Add logseq shortcut to Plasma 6 bar

This commit is contained in:
albert 2024-08-14 12:26:22 +09:00
parent 45148bc7dd
commit c2d16bf6d0
Signed by: albert
GPG key ID: 3895DD267CA11BA9
5 changed files with 13 additions and 4 deletions

View file

@ -84,6 +84,7 @@
"applications:bitwarden.desktop"
"applications:org.kde.konsole.desktop"
"applications:steam.desktop"
"applications:logseq.desktop"
];
};
}

View file

@ -1,4 +1,4 @@
{pkgs, username, hostname, config, deployment_type, ... }: {
{ username, hostname, deployment_type, ... }: {
# Set up the secrets file:
sops.secrets."syncthing_cert" = {
owner = "root";
@ -11,8 +11,14 @@
restartUnits = [ "syncthing.service" ];
};
networking.firewall.interfaces.tailscale0 = {
allowedTCPPorts = [ 8384 22000 ];
allowedUDPPorts = [ 22000 21027 ];
};
services.syncthing = {
enable = true;
urAccepted = "-1";
cert = "/run/secrets/syncthing_cert";
key = "/run/secrets/syncthing_key";
user = "${username}";

View file

@ -1,4 +1,4 @@
{ pkgs-unstable, pkgs, ... }: {
{ pkgs-unstable, ... }: {
# Enable tailscale and open port 22 on it
services.tailscale = {
enable = true;
@ -19,6 +19,8 @@
# Because of the split DNS, hosts forget which IP
# (external or internal) is promtail/loki.
# Setting them manually here helps.
# TODO: Update these when I move the server to warsaw-ovh-01
networking.extraHosts = ''
100.64.0.14 influx.sysctl.io
100.64.0.14 loki.sysctl.io

View file

@ -1,4 +1,4 @@
{ pkgs, config, hostname, username, ... }: {
{ username, ... }: {
imports = [ ../../common/services/syncthing.nix ];
services.syncthing = {