mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 09:26:54 +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 = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
passwordAuthentication = false;
|
passwordAuthentication = false;
|
||||||
kbdInteractiveAuthentication = false;
|
kbdInteractiveAuthentication = false;
|
||||||
settings.X11forwarding = true;
|
settings.X11forwarding = true;
|
||||||
settings.PermitRootLogin = "yes";
|
settings.PermitRootLogin = "yes";
|
||||||
}
|
};
|
||||||
environment.systemPackages = with pkgs; [ sshfs ];
|
environment.systemPackages = with pkgs; [ sshfs ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ in
|
||||||
users.users.jopejoe1 = {
|
users.users.jopejoe1 = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "jopejoe1 🚫";
|
description = "jopejoe1 🚫";
|
||||||
#initialPassword = "password";
|
initialPassword = "password";
|
||||||
extraGroups = [ "wheel"]
|
extraGroups = [ "wheel"]
|
||||||
++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"]
|
++ lib.optionals config.custom.hardware.printing.enable [ "scanner" "lp"]
|
||||||
++ lib.optional config.networking.networkmanager.enable "networkmanger";
|
++ lib.optional config.networking.networkmanager.enable "networkmanger";
|
||||||
|
|
Loading…
Reference in a new issue