diff options
author | Martin Fischer <martin@push-f.com> | 2025-08-27 21:19:14 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-08-28 20:59:59 +0200 |
commit | 647360dd67bacc00b7c280743a4834206aec89f1 (patch) | |
tree | e9f9c64e7bae18f1b0c0b49da9f48e669efe77b1 /nixos/hosts/tente/gotify.nix | |
parent | 613346ff97f9c3ac2e9026613aa4b183a06917a2 (diff) |
tente: replace gotify with grafana-matrix-forwarder
Diffstat (limited to 'nixos/hosts/tente/gotify.nix')
-rw-r--r-- | nixos/hosts/tente/gotify.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/nixos/hosts/tente/gotify.nix b/nixos/hosts/tente/gotify.nix deleted file mode 100644 index ba0fd02..0000000 --- a/nixos/hosts/tente/gotify.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ 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; - }; - }; - }; -} |