added isNormalUser

This commit is contained in:
John Lancaster
2024-12-08 13:40:10 -06:00
parent b16ab9e230
commit 6dfa38cc5e

View File

@@ -38,7 +38,10 @@
nixpkgs.hostPlatform = "${system}"; nixpkgs.hostPlatform = "${system}";
system.stateVersion = "${stateVersion}"; system.stateVersion = "${stateVersion}";
time.timeZone = "${timeZone}"; time.timeZone = "${timeZone}";
users.users.${user}.openssh.authorizedKeys.keyFiles = [ "/root/.ssh/authorized_keys" ]; users.users.${user} = {
isNormalUser = true;
openssh.authorizedKeys.keyFiles = [ "/root/.ssh/authorized_keys" ];
};
}) })
]; ];
}; };