diff options
-rw-r--r-- | chaski/configuration.nix | 5 | ||||
-rw-r--r-- | ilex/configuration.nix | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/chaski/configuration.nix b/chaski/configuration.nix index 658f55a..af82b98 100644 --- a/chaski/configuration.nix +++ b/chaski/configuration.nix @@ -43,6 +43,11 @@ firewall.allowedTCPPorts = [ 80 443 ]; }; + services.nix-serve = { + enable = true; + openFirewall = true; + }; + system.stateVersion = "20.09"; # Did you read the comment? } diff --git a/ilex/configuration.nix b/ilex/configuration.nix index 5df8fba..3988e81 100644 --- a/ilex/configuration.nix +++ b/ilex/configuration.nix @@ -11,6 +11,8 @@ ../modules/crs-tools.nix ]; + # nix.settings.sandbox = false; + networking.firewall.allowedTCPPorts = [ 5000 ]; boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_2; |