16 lines
375 B
Nix
16 lines
375 B
Nix
|
{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;
|
||
|
};
|
||
|
};
|
||
|
}
|