config.nix/modules/user/marty.nix

21 lines
315 B
Nix

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