diff --git a/modules/home/desktop/hyprland/classic.nix b/modules/home/de/hyprland/classic.nix similarity index 89% rename from modules/home/desktop/hyprland/classic.nix rename to modules/home/de/hyprland/classic.nix index 1de96f5..c750d2b 100644 --- a/modules/home/desktop/hyprland/classic.nix +++ b/modules/home/de/hyprland/classic.nix @@ -5,9 +5,9 @@ ... }: { - options.custom.desktop.hyprland.classic.enable = lib.mkEnableOption ""; + options.custom.de.hyprland.classic.enable = lib.mkEnableOption ""; - config = lib.mkIf config.custom.desktop.hyprland.classic.enable { + config = lib.mkIf config.custom.de.hyprland.classic.enable { custom = { programs = { hyprland.enable = true; diff --git a/modules/home/desktop/hyprland/noctalia.nix b/modules/home/de/hyprland/noctalia.nix similarity index 86% rename from modules/home/desktop/hyprland/noctalia.nix rename to modules/home/de/hyprland/noctalia.nix index 1d47a09..fbda85d 100644 --- a/modules/home/desktop/hyprland/noctalia.nix +++ b/modules/home/de/hyprland/noctalia.nix @@ -5,9 +5,9 @@ ... }: { - options.custom.desktop.hyprland.noctalia.enable = lib.mkEnableOption ""; + options.custom.de.hyprland.noctalia.enable = lib.mkEnableOption ""; - config = lib.mkIf config.custom.desktop.hyprland.noctalia.enable { + config = lib.mkIf config.custom.de.hyprland.noctalia.enable { custom = { programs = { hyprland.enable = true; diff --git a/modules/home/programs/noctalia-shell.nix b/modules/home/programs/noctalia-shell.nix index fff1ec1..f2ad12f 100644 --- a/modules/home/programs/noctalia-shell.nix +++ b/modules/home/programs/noctalia-shell.nix @@ -92,15 +92,14 @@ 2 3 ]; + location.name = "Darmstadt"; sessionMenu = { largeButtonsStyle = false; countdownDuration = 3000; }; idle.enabled = true; - audio.mprisBlacklist = [ "firefox" ]; - network.bluetoothAutoConnect = false; + audio.mprisBlacklist = "firefox"; location = { - name = "Darmstadt"; firstDayOfWeek = 1; showWeekNumberInCalendar = true; }; diff --git a/modules/nixos/desktop/hyprland.nix b/modules/nixos/de/hyprland.nix similarity index 65% rename from modules/nixos/desktop/hyprland.nix rename to modules/nixos/de/hyprland.nix index b73249f..062a3e8 100644 --- a/modules/nixos/desktop/hyprland.nix +++ b/modules/nixos/de/hyprland.nix @@ -5,9 +5,9 @@ ... }: { - options.custom.desktop.hyprland.enable = lib.mkEnableOption ""; + options.custom.de.hyprland.enable = lib.mkEnableOption ""; - config = lib.mkIf config.custom.desktop.hyprland.enable { + config = lib.mkIf config.custom.de.hyprland.enable { programs.hyprland = { enable = true; package = pkgs-unstable.hyprland; diff --git a/modules/nixos/login/tuigreet.nix b/modules/nixos/dm/tuigreet.nix similarity index 89% rename from modules/nixos/login/tuigreet.nix rename to modules/nixos/dm/tuigreet.nix index b36a503..1979915 100644 --- a/modules/nixos/login/tuigreet.nix +++ b/modules/nixos/dm/tuigreet.nix @@ -5,10 +5,10 @@ ... }: let - cfg = config.custom.login.tuigreet; + cfg = config.custom.dm.tuigreet; in { - options.custom.login.tuigreet = { + options.custom.dm.tuigreet = { enable = lib.mkEnableOption ""; autoLogin = lib.mkEnableOption ""; }; @@ -30,7 +30,7 @@ in "--remember-user-session" "--sessions '${sessionData}/share/wayland-sessions:${sessionData}/share/xsessions'" ]; - initial_session = lib.mkIf (cfg.autoLogin && config.custom.desktop.hyprland.enable) { + initial_session = lib.mkIf (cfg.autoLogin && config.custom.de.hyprland.enable) { command = lib.getExe pkgs.hyprland; user = "seb"; }; diff --git a/modules/nixos/services/syncthing.nix b/modules/nixos/services/syncthing.nix index 9427643..54e3679 100644 --- a/modules/nixos/services/syncthing.nix +++ b/modules/nixos/services/syncthing.nix @@ -10,6 +10,8 @@ let netCfg = config.custom.networking; inherit (config.services.syncthing) dataDir; + + useSopsSecrets = config.custom.sops.secretsData |> lib.hasAttr "syncthing"; in { options.custom.services.syncthing = { @@ -45,47 +47,31 @@ in "Videos" ]; }; - - certFile = lib.mkOption { - type = lib.types.nullOr self.lib.types.existingPath; - default = null; - }; - keyFile = lib.mkOption { - type = lib.types.nullOr self.lib.types.existingPath; - default = null; - }; }; config = lib.mkIf cfg.enable { - assertions = lib.singleton { - assertion = (cfg.gui.domain != null) -> (self.lib.isPrivateDomain cfg.gui.domain); - message = self.lib.mkUnprotectedMessage "Syncthing-GUI"; - }; + assertions = [ + { + assertion = cfg.isServer -> (cfg.gui.domain != null); + message = "Syncthing requires `gui.domain` to be set when `isServer` is enabled"; + } + { + assertion = (cfg.gui.domain != null) -> (self.lib.isPrivateDomain cfg.gui.domain); + message = self.lib.mkUnprotectedMessage "Syncthing-GUI"; + } + ]; - sops.secrets = { - "syncthing/cert" = lib.mkIf (cfg.certFile == null) { + sops.secrets = lib.mkIf useSopsSecrets { + "syncthing/cert" = { owner = config.services.syncthing.user; restartUnits = [ "syncthing.service" ]; }; - "syncthing/key" = lib.mkIf (cfg.keyFile == null) { + "syncthing/key" = { owner = config.services.syncthing.user; restartUnits = [ "syncthing.service" ]; }; }; - environment.etc = { - "syncthing/cert.pem" = lib.mkIf (cfg.certFile != null) { - source = cfg.certFile; - mode = "0644"; - user = config.services.syncthing.user; - }; - "syncthing/key.pem" = lib.mkIf (cfg.keyFile != null) { - source = cfg.keyFile; - mode = "0600"; - user = config.services.syncthing.user; - }; - }; - services = { syncthing = { enable = true; @@ -96,16 +82,8 @@ in guiAddress = "localhost:${toString cfg.gui.port}"; - cert = - if (cfg.certFile != null) then - "/etc/syncthing/cert.pem" - else - config.sops.secrets."syncthing/cert".path; - key = - if (cfg.keyFile != null) then - "/etc/syncthing/key.pem" - else - config.sops.secrets."syncthing/key".path; + cert = lib.mkIf useSopsSecrets config.sops.secrets."syncthing/cert".path; + key = lib.mkIf useSopsSecrets config.sops.secrets."syncthing/key".path; settings = let diff --git a/profiles/workstation.nix b/profiles/workstation.nix index f75ec43..d338f13 100644 --- a/profiles/workstation.nix +++ b/profiles/workstation.nix @@ -17,11 +17,11 @@ custom = { networking.overlay.role = "client"; boot.silent = true; - login.tuigreet = { + dm.tuigreet = { enable = true; autoLogin = true; }; - desktop.hyprland.enable = true; + de.hyprland.enable = true; services = { sound.enable = true; syncthing.enable = true; diff --git a/tests/syncthing/default.nix b/tests/syncthing/default.nix deleted file mode 100644 index 275932e..0000000 --- a/tests/syncthing/default.nix +++ /dev/null @@ -1,134 +0,0 @@ -{ - inputs, - self, - lib, - ... -}: -{ - node.specialArgs = { inherit inputs self; }; - - defaults = - { nodes, config, ... }: - { - imports = [ self.nixosModules.default ]; - - _module.args.allHosts = nodes |> lib.mapAttrs (_: node: { config = node; }); - - users = { - mutableUsers = false; - users.seb = { - isNormalUser = true; - password = "seb"; - }; - }; - - custom = { - networking.underlay.interface = "eth1"; - - services = { - nebula = { - caCertificateFile = ./keys/nebula/ca.crt; - certificateFile = ./keys/nebula/${config.networking.hostName}.crt; - privateKeyFile = ./keys/nebula/${config.networking.hostName}.key; - }; - - syncthing = { - enable = true; - deviceId = ./keys/syncthing/${config.networking.hostName}.id |> lib.readFile |> lib.trim; - certFile = ./keys/syncthing/${config.networking.hostName}.cert; - keyFile = ./keys/syncthing/${config.networking.hostName}.key; - }; - }; - }; - }; - - nodes = { - server = { - custom = { - networking = { - overlay = { - address = "10.254.250.1"; - isLighthouse = true; - role = "server"; - }; - underlay = { - cidr = "192.168.0.1/16"; - isPublic = true; - }; - }; - - services.syncthing.isServer = true; - }; - }; - - client1 = { - custom.networking = { - overlay = { - address = "10.254.250.2"; - role = "client"; - }; - underlay.cidr = "192.168.0.2/16"; - }; - }; - - client2 = { - custom = { - networking = { - overlay = { - address = "10.254.250.3"; - role = "client"; - }; - underlay.cidr = "192.168.0.3/16"; - }; - - services.syncthing.folders = [ "Documents" ]; - }; - }; - }; - - testScript = - { nodes, ... }: - let - serverNetCfg = nodes.server.custom.networking.overlay; - client1NetCfg = nodes.client1.custom.networking.overlay; - client2NetCfg = nodes.client2.custom.networking.overlay; - - getSyncPort = hostName: nodes.${hostName}.custom.services.syncthing.syncPort |> toString; - in - '' - start_all() - - server.wait_for_unit("syncthing.service") - client1.wait_for_unit("syncthing.service") - client2.wait_for_unit("syncthing.service") - - server.wait_for_unit("syncthing-init.service") - client1.wait_for_unit("syncthing-init.service") - client2.wait_for_unit("syncthing-init.service") - - server.wait_for_open_port(${getSyncPort "server"}, "${serverNetCfg.address}") - client1.wait_for_open_port(${getSyncPort "client1"}, "${client1NetCfg.address}") - client2.wait_for_open_port(${getSyncPort "client2"}, "${client2NetCfg.address}") - - with subtest("Three way sync of Documents"): - server.wait_for_file("/var/lib/syncthing/Documents") - client1.wait_for_file("/home/seb/Documents") - client2.wait_for_file("/home/seb/Documents") - - server.succeed("sudo --user=syncthing touch /var/lib/syncthing/Documents/server") - client1.succeed("sudo --user=seb touch /home/seb/Documents/client1") - client2.succeed("sudo --user=seb touch /home/seb/Documents/client2") - - server.wait_for_file("/var/lib/syncthing/Documents/client1") - server.wait_for_file("/var/lib/syncthing/Documents/client2") - client1.wait_for_file("/home/seb/Documents/server") - client1.wait_for_file("/home/seb/Documents/client2") - client2.wait_for_file("/home/seb/Documents/server") - client2.wait_for_file("/home/seb/Documents/client1") - - with subtest("Two way sync of Pictures"): - server.wait_for_file("/var/lib/syncthing/Pictures") - client1.wait_for_file("/home/seb/Pictures") - client2.fail("test -d /home/seb/Pictures") - ''; -} diff --git a/tests/syncthing/keys/nebula/ca.crt b/tests/syncthing/keys/nebula/ca.crt deleted file mode 100644 index 5b6272b..0000000 --- a/tests/syncthing/keys/nebula/ca.crt +++ /dev/null @@ -1,5 +0,0 @@ ------BEGIN NEBULA CERTIFICATE V2----- -MHygFoAEdGVzdIQB/4UEaY8shIYFASWHSoSCIM0af4sq7VnPAySG5h9fwiq/XHvD -a0Ssbk1+KVWFpR71g0DaZP8qR35Zut2z9i9D2bCDuagQNvvxCrkZ3JcF0gMvWu3u -uzKQMKzJSqipppgL/n3iQwwsBAoHYrx1XAY6zXgE ------END NEBULA CERTIFICATE V2----- diff --git a/tests/syncthing/keys/nebula/ca.key b/tests/syncthing/keys/nebula/ca.key deleted file mode 100644 index 4a22aa1..0000000 --- a/tests/syncthing/keys/nebula/ca.key +++ /dev/null @@ -1,4 +0,0 @@ ------BEGIN NEBULA ED25519 PRIVATE KEY----- -8kwpb4GZIphJmamXx0ZrLm5TxPZ7G88L44mrdT2dQp3NGn+LKu1ZzwMkhuYfX8Iq -v1x7w2tErG5NfilVhaUe9Q== ------END NEBULA ED25519 PRIVATE KEY----- diff --git a/tests/syncthing/keys/nebula/client1.crt b/tests/syncthing/keys/nebula/client1.crt deleted file mode 100644 index e7fab0c..0000000 --- a/tests/syncthing/keys/nebula/client1.crt +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN NEBULA CERTIFICATE V2----- -MIG8oFaAB2NsaWVudDGhBwQFCv76AhijEwwGY2xpZW50DAlzeW5jdGhpbmeFBGmr -V+WGBQElh0qDhyA8ckeBMU2fPOMFe8cEQoAZW3a1/xd+hPuJgkRptJYkIIIg5cgC -6ZPW+oUy91XjQ+2fR37eeSh2Oh0mUeK3QGOf62uDQMur6GhOZatAfhbvYXYpI79Z -4lM7tUWXLH/DBIAMeqVj2iStj5tz8vDNo/ixG2igMYU7ZaDTw7gLgOoue859fQY= ------END NEBULA CERTIFICATE V2----- diff --git a/tests/syncthing/keys/nebula/client1.key b/tests/syncthing/keys/nebula/client1.key deleted file mode 100644 index 1f79f7d..0000000 --- a/tests/syncthing/keys/nebula/client1.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN NEBULA X25519 PRIVATE KEY----- -bpb3z7RewB2Pcg9d+mkMVjoeRRortg+v+f0ljk6jscI= ------END NEBULA X25519 PRIVATE KEY----- diff --git a/tests/syncthing/keys/nebula/client2.crt b/tests/syncthing/keys/nebula/client2.crt deleted file mode 100644 index fa33993..0000000 --- a/tests/syncthing/keys/nebula/client2.crt +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN NEBULA CERTIFICATE V2----- -MIG8oFaAB2NsaWVudDKhBwQFCv76AxijEwwGY2xpZW50DAlzeW5jdGhpbmeFBGmr -V++GBQElh0qDhyA8ckeBMU2fPOMFe8cEQoAZW3a1/xd+hPuJgkRptJYkIIIgVOR5 -Nq5iScqDyYvY9f5Hk3jjq7qfxHEUhdAaeCDTx0KDQNoes3D5SbgZNKLtsXpAc8PL -PahMWZoDaySnoLpPJIhRSsav6ZbfUdDGzwbvhW+D8u6sZOqP+HGQSxaPU6ap3As= ------END NEBULA CERTIFICATE V2----- diff --git a/tests/syncthing/keys/nebula/client2.key b/tests/syncthing/keys/nebula/client2.key deleted file mode 100644 index 346177f..0000000 --- a/tests/syncthing/keys/nebula/client2.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN NEBULA X25519 PRIVATE KEY----- -Y4mF5DL8TW/Q+OSGNgh942LqlxuWQA2xntbyWLTQPF0= ------END NEBULA X25519 PRIVATE KEY----- diff --git a/tests/syncthing/keys/nebula/server.crt b/tests/syncthing/keys/nebula/server.crt deleted file mode 100644 index 6d55371..0000000 --- a/tests/syncthing/keys/nebula/server.crt +++ /dev/null @@ -1,6 +0,0 @@ ------BEGIN NEBULA CERTIFICATE V2----- -MIG7oFWABnNlcnZlcqEHBAUK/voBGKMTDAZzZXJ2ZXIMCXN5bmN0aGluZ4UEaaxC -dIYFASWHSoOHIDxyR4ExTZ884wV7xwRCgBlbdrX/F36E+4mCRGm0liQggiAPf3NY -OWszPbspqt89XZ1KoXShQaLFp+7snVtn4cLnCoNAPtMQGcr0qxFIEEK0K/a5cvk7 -Uc7AMLB0zjzUFlw881iI4dGLSSbKjs2c6RMtxmKHOwm9sqCc18QITQ822cwPDg== ------END NEBULA CERTIFICATE V2----- diff --git a/tests/syncthing/keys/nebula/server.key b/tests/syncthing/keys/nebula/server.key deleted file mode 100644 index 3af64f2..0000000 --- a/tests/syncthing/keys/nebula/server.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN NEBULA X25519 PRIVATE KEY----- -fx4GTdb3a1GUeRoSqFQH3Jb9KEqSipFoYKM/34D16fs= ------END NEBULA X25519 PRIVATE KEY----- diff --git a/tests/syncthing/keys/syncthing/client1.cert b/tests/syncthing/keys/syncthing/client1.cert deleted file mode 100644 index db46619..0000000 --- a/tests/syncthing/keys/syncthing/client1.cert +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIBnzCCAVGgAwIBAgIIZ8OMU1XkHLYwBQYDK2VwMEoxEjAQBgNVBAoTCVN5bmN0 -aGluZzEgMB4GA1UECxMXQXV0b21hdGljYWxseSBHZW5lcmF0ZWQxEjAQBgNVBAMT -CXN5bmN0aGluZzAeFw0yNjAzMDYwMDAwMDBaFw00NjAzMDEwMDAwMDBaMEoxEjAQ -BgNVBAoTCVN5bmN0aGluZzEgMB4GA1UECxMXQXV0b21hdGljYWxseSBHZW5lcmF0 -ZWQxEjAQBgNVBAMTCXN5bmN0aGluZzAqMAUGAytlcAMhADdeAXQaYGTf6XLeVx53 -BsAK3ODoIwb/IHobmgTHsSwLo1UwUzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYw -FAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwFAYDVR0RBA0wC4IJ -c3luY3RoaW5nMAUGAytlcANBADyH0WLqPku8KqsnK5/PyVo6u7YiH961dQmOaDp0 -6GyMJogD8ieICsCIt+IeZnhc9CTiJ9++S1RfnF5+R8UVDAs= ------END CERTIFICATE----- diff --git a/tests/syncthing/keys/syncthing/client1.id b/tests/syncthing/keys/syncthing/client1.id deleted file mode 100644 index 6159857..0000000 --- a/tests/syncthing/keys/syncthing/client1.id +++ /dev/null @@ -1 +0,0 @@ -IB7WP5L-6BQ2XJE-GQ6LE5A-ADBH4VM-G5KPGN5-JRYKLXP-XOGCVFM-TC7AXAB \ No newline at end of file diff --git a/tests/syncthing/keys/syncthing/client1.key b/tests/syncthing/keys/syncthing/client1.key deleted file mode 100644 index 319c714..0000000 --- a/tests/syncthing/keys/syncthing/client1.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN PRIVATE KEY----- -MC4CAQAwBQYDK2VwBCIEIIE7hYkrJGXQ6gwZytxBaWvMnqs9kZB01WUrUiWZrXxc ------END PRIVATE KEY----- diff --git a/tests/syncthing/keys/syncthing/client2.cert b/tests/syncthing/keys/syncthing/client2.cert deleted file mode 100644 index 018bb3a..0000000 --- a/tests/syncthing/keys/syncthing/client2.cert +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIBnzCCAVGgAwIBAgIIYBqDIQR6+i0wBQYDK2VwMEoxEjAQBgNVBAoTCVN5bmN0 -aGluZzEgMB4GA1UECxMXQXV0b21hdGljYWxseSBHZW5lcmF0ZWQxEjAQBgNVBAMT -CXN5bmN0aGluZzAeFw0yNjAzMDYwMDAwMDBaFw00NjAzMDEwMDAwMDBaMEoxEjAQ -BgNVBAoTCVN5bmN0aGluZzEgMB4GA1UECxMXQXV0b21hdGljYWxseSBHZW5lcmF0 -ZWQxEjAQBgNVBAMTCXN5bmN0aGluZzAqMAUGAytlcAMhAGI9m1y3be3GDH5n1O9o -FHrGcGQM9Uc6ws7DjzUM/wPho1UwUzAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0lBBYw -FAYIKwYBBQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwFAYDVR0RBA0wC4IJ -c3luY3RoaW5nMAUGAytlcANBAD39uIYHfausQ7UHoGHp/xsEdYVeybdbfObIPagY -a5udetlOfER5EwGAaqGNSG6C+R+4NgxRU4SU0KMWn6AxDQc= ------END CERTIFICATE----- diff --git a/tests/syncthing/keys/syncthing/client2.id b/tests/syncthing/keys/syncthing/client2.id deleted file mode 100644 index 5a24ef4..0000000 --- a/tests/syncthing/keys/syncthing/client2.id +++ /dev/null @@ -1 +0,0 @@ -CZAD2UP-QINQEBX-YO5HKF4-DWXOI2O-C3O7PNP-ATHP2ZE-Y35QSMQ-VM4E3Q6 \ No newline at end of file diff --git a/tests/syncthing/keys/syncthing/client2.key b/tests/syncthing/keys/syncthing/client2.key deleted file mode 100644 index 76d1316..0000000 --- a/tests/syncthing/keys/syncthing/client2.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN PRIVATE KEY----- -MC4CAQAwBQYDK2VwBCIEIMGEoiShb3fDL4xKBGbcTD1pm0Q+zMhqcrQDBY7Clvn9 ------END PRIVATE KEY----- diff --git a/tests/syncthing/keys/syncthing/server.cert b/tests/syncthing/keys/syncthing/server.cert deleted file mode 100644 index 805e0c5..0000000 --- a/tests/syncthing/keys/syncthing/server.cert +++ /dev/null @@ -1,11 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIBoDCCAVKgAwIBAgIJAPrpCfMh1qXtMAUGAytlcDBKMRIwEAYDVQQKEwlTeW5j -dGhpbmcxIDAeBgNVBAsTF0F1dG9tYXRpY2FsbHkgR2VuZXJhdGVkMRIwEAYDVQQD -EwlzeW5jdGhpbmcwHhcNMjYwMzA2MDAwMDAwWhcNNDYwMzAxMDAwMDAwWjBKMRIw -EAYDVQQKEwlTeW5jdGhpbmcxIDAeBgNVBAsTF0F1dG9tYXRpY2FsbHkgR2VuZXJh -dGVkMRIwEAYDVQQDEwlzeW5jdGhpbmcwKjAFBgMrZXADIQCP17+WnSg6hU2fBqdm -53QMqhPE7uJhofVKPJdxu4xnGaNVMFMwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQW -MBQGCCsGAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMBQGA1UdEQQNMAuC -CXN5bmN0aGluZzAFBgMrZXADQQBPdsirUqhXmor3UzuFkRMexbiJQQrHCq474DdX -gZyQgfGkxUEtlObNuoD7gVwB0Urn2P5nr9MeJIS//CG5be8F ------END CERTIFICATE----- diff --git a/tests/syncthing/keys/syncthing/server.id b/tests/syncthing/keys/syncthing/server.id deleted file mode 100644 index 22f21f3..0000000 --- a/tests/syncthing/keys/syncthing/server.id +++ /dev/null @@ -1 +0,0 @@ -E74TB3J-GZ2F5ZG-J22G3B6-CJBSPRR-2C43YZJ-5PX47UT-OXJLWPA-EKWEGAB \ No newline at end of file diff --git a/tests/syncthing/keys/syncthing/server.key b/tests/syncthing/keys/syncthing/server.key deleted file mode 100644 index 47beb3c..0000000 --- a/tests/syncthing/keys/syncthing/server.key +++ /dev/null @@ -1,3 +0,0 @@ ------BEGIN PRIVATE KEY----- -MC4CAQAwBQYDK2VwBCIEIM0TySbarWhDA+d5N3UecLGiMCR3jsioPIMxCP5H02Bt ------END PRIVATE KEY----- diff --git a/users/seb/home.nix b/users/seb/home.nix index b0ae7aa..dbfb930 100644 --- a/users/seb/home.nix +++ b/users/seb/home.nix @@ -19,7 +19,7 @@ custom = { sops.enable = true; - desktop.hyprland.noctalia.enable = true; + de.hyprland.noctalia.enable = true; programs = { shell = {