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

9 lines
319 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 ./crow/home.nix;
}