diff options
Diffstat (limited to 'Biz/Cloud/Web.nix')
-rw-r--r-- | Biz/Cloud/Web.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Biz/Cloud/Web.nix b/Biz/Cloud/Web.nix index a096779..e0b9a95 100644 --- a/Biz/Cloud/Web.nix +++ b/Biz/Cloud/Web.nix @@ -1,10 +1,11 @@ -{ config, ... }: +{ config, pkgs, ... }: let rootDomain = config.networking.domain; ports = import ./Ports.nix; in { + imports = [ ./Gmnisrv.nix ]; networking.firewall = { allowedTCPPorts = [ ports.ssh @@ -36,6 +37,7 @@ in }; }; gmnisrv = { + package = pkgs.gmnisrv; enable = true; settings = { listen = "0.0.0.0:${toString ports.gemini} [::]:${toString ports.gemini}"; |