Compare commits

..

No commits in common. "7d8085d60f30ac28ec25a1de611cbbd3ae3e4b3b" and "a34936ab785a43cd457f7124614ddc838916dff6" have entirely different histories.

5 changed files with 0 additions and 32 deletions

View file

@ -2,6 +2,5 @@
imports = [
./traefik.nix
./uptimekuma.nix
./gotify.nix
];
}

View file

@ -1,7 +0,0 @@
_: {
networking.firewall.allowedTCPPorts = [3000];
services.gotify = {
enable = true;
port = 3000;
};
}

View file

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

View file

@ -1,6 +1,5 @@
{...}: {
imports = [
./restic.nix
./gotify-desktop.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;
};
};
}