26 lines
331 B
Nix
26 lines
331 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
users.users.marty = {
|
|
isNormalUser = true;
|
|
description = "marty";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"wheel"
|
|
"video"
|
|
"audio"
|
|
"render"
|
|
];
|
|
shell = pkgs.fish;
|
|
};
|
|
|
|
security.sudo = {
|
|
enable = true;
|
|
wheelNeedsPassword = true;
|
|
};
|
|
}
|