diff --git a/modules/system/core/default.nix b/modules/system/core/default.nix index 883bdef..67b5907 100644 --- a/modules/system/core/default.nix +++ b/modules/system/core/default.nix @@ -15,20 +15,17 @@ locale ]; in { - imports = - [ - # /etc/nixos/hardware-configuration.nix - ] - ++ modules; + imports = modules; + services = { openssh = { enable = true; settings = { PermitRootLogin = "yes"; - } - ; + }; }; }; + environment.systemPackages = with pkgs; [ vim unzip @@ -39,6 +36,7 @@ curlWithGnuTls wget ]; + system.stateVersion = "26.02"; }; }