CrOS/modules/users/default.nix
2024-09-17 16:26:23 -04:00

7 lines
224 B
Nix

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