Compare commits
No commits in common. "7d8085d60f30ac28ec25a1de611cbbd3ae3e4b3b" and "a34936ab785a43cd457f7124614ddc838916dff6" have entirely different histories.
7d8085d60f
...
a34936ab78
5 changed files with 0 additions and 32 deletions
|
@ -2,6 +2,5 @@
|
|||
imports = [
|
||||
./traefik.nix
|
||||
./uptimekuma.nix
|
||||
./gotify.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
_: {
|
||||
networking.firewall.allowedTCPPorts = [3000];
|
||||
services.gotify = {
|
||||
enable = true;
|
||||
port = 3000;
|
||||
};
|
||||
}
|
|
@ -32,13 +32,6 @@
|
|||
tls.domains = [{main = "*.notohh.dev";}];
|
||||
tls.certresolver = "production";
|
||||
};
|
||||
gotify = {
|
||||
rule = "Host(`gotify.notohh.dev`)";
|
||||
entrypoints = ["websecure"];
|
||||
service = "gotify";
|
||||
tls.domains = [{main = "*.notohh.dev";}];
|
||||
tls.certresolver = "production";
|
||||
};
|
||||
neko = {
|
||||
rule = "Host(`neko.notohh.dev`)";
|
||||
entrypoints = ["websecure"];
|
||||
|
@ -49,7 +42,6 @@
|
|||
};
|
||||
services = {
|
||||
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
|
||||
gotify.loadBalancer.servers = [{url = "http://100.87.54.48:3000";}];
|
||||
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./restic.nix
|
||||
./gotify-desktop.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue