nix-infra/modules/users/default.nix

20 lines
299 B
Nix
Raw Normal View History

2024-03-24 18:02:22 +00:00
{
lib,
config,
pkgs,
...
}: {
users.users = {
sammy = {
isNormalUser = true;
extraGroups = ["networkmanager" "wheel" "docker"];
shell = pkgs.nushell;
};
};
home-manager.useGlobalPkgs = true;
home-manager.users = {
sammy.imports = [./sammy.nix];
};
}