mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
16 lines
295 B
Nix
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
|
|
];
|
|
};
|
|
}
|