From 7d7f6f44073f06c16d9722a78f6fe7e02ed1ad04 Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 30 Dec 2023 18:06:17 -0500 Subject: [PATCH] tsuki: remove gotify desktop --- hosts/tsuki/services/default.nix | 1 - hosts/tsuki/services/gotify-desktop.nix | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 hosts/tsuki/services/gotify-desktop.nix 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; - }; - }; -}