dots/configuration/modules/main-user.nix
2025-09-22 10:19:00 +02:00

9 lines
188 B
Nix

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