flake/modules/nixos/core/user.nix
2024-05-28 15:55:10 +00:00

16 lines
341 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";
};
};
}