diff --git a/modules/system/ssh/default.nix b/modules/system/ssh/default.nix index 60f6995..519244d 100644 --- a/modules/system/ssh/default.nix +++ b/modules/system/ssh/default.nix @@ -13,10 +13,10 @@ in services.openssh = { enable = true; passwordAuthentication = false; - kbdInteractiveAuthentication = false; + kbdInteractiveAuthentication = false; settings.X11forwarding = true; settings.PermitRootLogin = "yes"; - } + }; environment.systemPackages = with pkgs; [ sshfs ]; }; } diff --git a/modules/user/jopejoe1/default.nix b/modules/user/jopejoe1/default.nix index 12612e1..68078b6 100644 --- a/modules/user/jopejoe1/default.nix +++ b/modules/user/jopejoe1/default.nix @@ -14,7 +14,7 @@ in users.users.jopejoe1 = { isNormalUser = true; description = "jopejoe1 🚫"; - #initialPassword = "password"; + initialPassword = "password"; extraGroups = [ "wheel"] ++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"] ++ lib.optional config.networking.networkmanager.enable "networkmanger";