CrOS/modules/users/crow.nix
2024-09-16 10:57:06 -04:00

7 lines
182 B
Nix

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