nix-infra/users/default.nix

15 lines
196 B
Nix
Raw Normal View History

{
lib,
config,
pkgs,
...
}: {
2023-12-17 13:33:15 +00:00
users.users = {
sammy = {
isNormalUser = true;
extraGroups = ["networkmanager" "wheel" "docker"];
2023-12-17 13:33:15 +00:00
shell = pkgs.nushell;
};
};
}