CrOS/modules/users/crow/user.nix
2025-01-10 13:17:58 -05:00

14 lines
327 B
Nix

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