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

7 lines
218 B
Nix

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