mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 02:04:09 -05:00
17 lines
414 B
Nix
17 lines
414 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config.users.users.crow = lib.mkIf config.user.crow.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = ["wheel" "networkmanager" "audio" "plugdev" "dialout"];
|
|
openssh.authorizedKeys.keyFiles = [
|
|
inputs.nix-secrets.keys.default
|
|
];
|
|
};
|
|
|
|
config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
|
|
}
|