mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-13 02:34:05 -05:00
14 lines
339 B
Nix
14 lines
339 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config.users.users.overseer = lib.mkIf config.user.overseer.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = ["wheel" "libvirtd"];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKCBmjkaAWNBQ6NwiK56miuv30pjheNTZfrULRfPRmed"
|
|
];
|
|
};
|
|
}
|