new_dots/configuration/modules/main-user.nix
2026-01-17 22:20:11 +01:00

8 lines
146 B
Nix

{pkgs, ...}: {
users.users.benag = {
isNormalUser = true;
extraGroups = ["wheel" "video" "renderer"];
shell = pkgs.nushell;
};
}