Update renamed nixos options

This commit is contained in:
Zuckerberg 2023-03-07 22:52:31 -07:00
parent c5e7d8b2fe
commit aff5611cdb

View File

@ -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;