new_dots/configuration/modules/system/main-user.nix
2026-02-22 18:10:35 +01:00

8 lines
127 B
Nix

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