Update renamed nixos options
This commit is contained in:
@@ -30,7 +30,9 @@ in
|
|||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
passwordAuthentication = false;
|
settings = {
|
||||||
|
PasswordAuthentication = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
programs.mosh.enable = true;
|
programs.mosh.enable = true;
|
||||||
|
|
||||||
@@ -70,7 +72,9 @@ in
|
|||||||
users.users.root = {
|
users.users.root = {
|
||||||
openssh.authorizedKeys.keys = sshHigherTrustKeys;
|
openssh.authorizedKeys.keys = sshHigherTrustKeys;
|
||||||
};
|
};
|
||||||
nix.trustedUsers = [ "root" "googlebot" ];
|
nix.settings = {
|
||||||
|
trusted-users = [ "root" "googlebot" ];
|
||||||
|
};
|
||||||
|
|
||||||
nix.gc.automatic = true;
|
nix.gc.automatic = true;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user