mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 15:46:34 +01:00
Fix typo
This commit is contained in:
parent
d45156b4ee
commit
9aa00d2b45
2 changed files with 3 additions and 3 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue