orange/configuration.nix

14 lines
232 B
Nix
Raw Normal View History

2023-05-07 02:04:36 +00:00
{
users.users.mtxyz = {
openssh.authorizedKeys.keyFiles = [
./authorized_keys
];
isNormalUser = true;
extraGroups = [ "wheel" "dialout" ];
initialPassword = "";
};
services.openssh.enable = true;
}