21 lines
No EOL
274 B
Nix
21 lines
No EOL
274 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
|
|
users = {
|
|
defaultUserShell = pkgs.nushell;
|
|
users.notoh = {
|
|
isNormalUser = true;
|
|
description = "notoh";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"wheel"
|
|
"disk"
|
|
"video"
|
|
"docker"
|
|
];
|
|
};
|
|
};
|
|
|
|
} |