summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/hosts/tente/default.nix2
-rw-r--r--nixos/hosts/tente/gotify.nix21
2 files changed, 23 insertions, 0 deletions
diff --git a/nixos/hosts/tente/default.nix b/nixos/hosts/tente/default.nix
index b4a47f0..8904ba7 100644
--- a/nixos/hosts/tente/default.nix
+++ b/nixos/hosts/tente/default.nix
@@ -19,6 +19,7 @@ in
<top/shared/tailscale.nix>
./web-personal.nix
./git.nix
+ ./gotify.nix
./headscale.nix
./matrix.nix
./monitoring.nix
@@ -79,6 +80,7 @@ in
monitoring.grafanaUiPort = 3000;
monitoring.alloyUiPort = 3001;
monitoring.lokiPort = 3030;
+ gotify.port = 4000;
monitoring.prometheusNodeExporterPort = 9002;
monitoring.prometheusSqlExporterPort = 9003;
headscale.port = 8080;
diff --git a/nixos/hosts/tente/gotify.nix b/nixos/hosts/tente/gotify.nix
new file mode 100644
index 0000000..ba0fd02
--- /dev/null
+++ b/nixos/hosts/tente/gotify.nix
@@ -0,0 +1,21 @@
+{ config, lib, ... }:
+
+let
+ cfg = config.gotify;
+in
+{
+ options.gotify = {
+ port = lib.mkOption {
+ type = lib.types.int;
+ };
+ };
+
+ config = {
+ services.gotify = {
+ enable = true;
+ environment = {
+ GOTIFY_SERVER_PORT = cfg.port;
+ };
+ };
+ };
+}