CrOS/modules/users/lighthouse/user.nix
2025-02-10 19:55:31 +00:00

16 lines
295 B
Nix

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