config.nix/user/marty.nix
2025-12-18 13:30:28 +01:00

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;
};
}