CrOS/modules/users/default.nix
2024-09-17 14:57:22 -04:00

7 lines
216 B
Nix

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