dots/configuration/modules/main-user.nix
2026-03-11 12:48:06 +01:00

9 lines
198 B
Nix

{pkgs, ...}: {
users.users.maxag = {
isNormalUser = true;
description = "Max Ag";
extraGroups = ["networkmanager" "wheel" "video" "input" "dialout"];
shell = pkgs.nushell;
};
}