CrOS/modules/users/lighthouse/user.nix
2025-01-28 16:55:31 -05:00

15 lines
295 B
Nix

{
inputs,
lib,
config,
...
}: {
config.users.users.lighthouse = lib.mkIf config.user.lighthouse.enable {
isNormalUser = true;
initialPassword = "changeme";
extraGroups = ["wheel"];
openssh.authorizedKeys.keyFiles = [
inputs.nix-secrets.keys.default
];
};
}