10 lines
208 B
Nix
10 lines
208 B
Nix
{
|
|
flake.nixosModules.nest = { pkgs, ... }: {
|
|
users.users.nest = {
|
|
description = "nest";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "network" ];
|
|
shell = pkgs.zsh;
|
|
};
|
|
};
|
|
}
|