mirror of
https://github.com/Death916/nixconfig.git
synced 2026-04-10 02:54:39 -07:00
21 lines
369 B
Nix
21 lines
369 B
Nix
# ~/nixconfig/modules.new/nixos/laptop/user.nix
|
|
{
|
|
config,
|
|
pkgs,
|
|
primaryUser,
|
|
...
|
|
}:
|
|
|
|
{
|
|
users.users.${primaryUser} = {
|
|
isNormalUser = true;
|
|
home = "/home/${primaryUser}";
|
|
description = "${primaryUser}";
|
|
extraGroups = [
|
|
"wheel"
|
|
"networkmanager"
|
|
"video"
|
|
"plugdev"
|
|
"docker"
|
|
]; };
|
|
}
|