20 lines
299 B
Nix
20 lines
299 B
Nix
|
{
|
||
|
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];
|
||
|
};
|
||
|
}
|