summaryrefslogtreecommitdiff
path: root/nixos/hosts/tente/gotify.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/hosts/tente/gotify.nix')
-rw-r--r--nixos/hosts/tente/gotify.nix21
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;
- };
- };
- };
-}