mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 18:24:09 -05:00
14 lines
317 B
Nix
14 lines
317 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config.users.users.crow = lib.mkIf config.user.crow.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = ["wheel" "networkmanager" "audio" "plugdev"];
|
|
};
|
|
|
|
config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
|
|
}
|