This commit is contained in:
TheWanderingCrow 2025-03-13 09:33:14 -04:00
parent 82169a4c33
commit 7cb51dcf8d
4 changed files with 14 additions and 6 deletions

View file

@ -4,7 +4,7 @@
config,
...
}: {
config.users.users.crow = lib.mkIf config.user.crow.enable {
users.users.crow = lib.mkIf config.user.crow.enable {
isNormalUser = true;
initialPassword = "changeme";
extraGroups = ["wheel" "networkmanager" "audio" "plugdev" "dialout"];
@ -13,5 +13,5 @@
];
};
config.home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
home-manager.users.crow = lib.mkIf config.user.crow.home.enable ./home.nix;
}