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 = [
|
imports = [
|
||||||
./traefik.nix
|
./traefik.nix
|
||||||
./uptimekuma.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.domains = [{main = "*.notohh.dev";}];
|
||||||
tls.certresolver = "production";
|
tls.certresolver = "production";
|
||||||
};
|
};
|
||||||
gotify = {
|
|
||||||
rule = "Host(`gotify.notohh.dev`)";
|
|
||||||
entrypoints = ["websecure"];
|
|
||||||
service = "gotify";
|
|
||||||
tls.domains = [{main = "*.notohh.dev";}];
|
|
||||||
tls.certresolver = "production";
|
|
||||||
};
|
|
||||||
neko = {
|
neko = {
|
||||||
rule = "Host(`neko.notohh.dev`)";
|
rule = "Host(`neko.notohh.dev`)";
|
||||||
entrypoints = ["websecure"];
|
entrypoints = ["websecure"];
|
||||||
|
@ -49,7 +42,6 @@
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
uptime-kuma.loadBalancer.servers = [{url = "http://100.87.54.48:4000";}];
|
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";}];
|
neko.loadBalancer.servers = [{url = "http://100.110.140.130:8080";}];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./restic.nix
|
./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