flake/modules/nixos/core/user.nix
2024-06-06 20:16:24 +00:00

17 lines
412 B
Nix

{ pkgs, lib, config, ... }: {
options.mods.user.name = lib.mkOption {
default = "muon";
description = "username of the main system user";
};
config = {
users.users.${config.mods.user.name} = {
isNormalUser = true;
extraGroups = [ "wheel" ];
initialPassword = "changeme";
shell = if config.programs.zsh.enable
then pkgs.zsh
else pkgs.bash;
};
};
}