tsuki: remove gotify desktop
All checks were successful
flake check / check (push) Successful in 8m46s
fmt check / check (push) Successful in 1m4s

This commit is contained in:
notohh 2023-12-30 18:06:17 -05:00
parent 9acd9716da
commit 7d7f6f4407
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 0 additions and 16 deletions

View file

@ -1,7 +1,6 @@
{...}: {
imports = [
./restic.nix
./gotify-desktop.nix
./hydroxide.nix
];
}

View file

@ -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;
};
};
}