diff --git a/hosts/tsuki/services/default.nix b/hosts/tsuki/services/default.nix index f49dfce..db1958c 100644 --- a/hosts/tsuki/services/default.nix +++ b/hosts/tsuki/services/default.nix @@ -1,7 +1,6 @@ {...}: { imports = [ ./restic.nix - ./gotify-desktop.nix ./hydroxide.nix ]; } diff --git a/hosts/tsuki/services/gotify-desktop.nix b/hosts/tsuki/services/gotify-desktop.nix deleted file mode 100644 index ddb9bac..0000000 --- a/hosts/tsuki/services/gotify-desktop.nix +++ /dev/null @@ -1,15 +0,0 @@ -{pkgs, ...}: { - systemd.services.gotify-desktop = { - enable = true; - wantedBy = [ - "multi-user.target" - ]; - description = "Small Gotify daemon to send messages as desktop notifications"; - serviceConfig = { - User = "notoh"; - ExecStart = "${pkgs.gotify-desktop}/bin/gotify-desktop"; - Restart = "always"; - RestartSec = 30; - }; - }; -}