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