CrOS/modules/users/crow/user.nix
2024-09-17 20:57:47 -04:00

9 lines
314 B
Nix

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