13 lines
271 B
Nix
13 lines
271 B
Nix
{config, ...}: {
|
|
users.users.${config.local.systemVars.username} = {
|
|
isNormalUser = true;
|
|
description = config.local.homeVars.fullName or "User";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"audio"
|
|
"video"
|
|
"wheel"
|
|
"plugdev"
|
|
];
|
|
};
|
|
}
|