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