dot.nix/hosts/common/optional/minimal-user.nix

12 lines
265 B
Nix

{ config, ... }:
{
# Set a temp password for use by minimal builds like installer and iso
users.users.${config.hostSpec.username} = {
isNormalUser = true;
password = config.hostSpec.password;
extraGroups = [
"wheel"
"ryot"
];
};
}