CrOS/modules/users/crow/user.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;
}