diff options
Diffstat (limited to 'configuration/snorlax')
-rw-r--r-- | configuration/snorlax/default.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configuration/snorlax/default.nix b/configuration/snorlax/default.nix index 61e5902..dd9841c 100644 --- a/configuration/snorlax/default.nix +++ b/configuration/snorlax/default.nix @@ -1,4 +1,4 @@ -{ ... }: +{ lib, ... }: { imports = [ ./disk-config.nix @@ -19,6 +19,8 @@ PermitRootLogin = "no"; AllowUsers = [ "jras" ]; }; - openFirewall = true; + openFirewall = lib.mkForce true; }; + + home-manager.users.jras = { home.stateVersion = "24.11"; }; } |