mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
16 lines
341 B
Nix
16 lines
341 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config.users.users.overseer = lib.mkIf config.user.overseer.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = ["wheel" "libvirtd"];
|
|
openssh.authorizedKeys.keyFiles = [
|
|
inputs.nix-secrets.keys.default
|
|
inputs.nix-secrets.keys.overseer
|
|
];
|
|
};
|
|
}
|