nixos/modules/users/nest.nix

11 lines
208 B
Nix
Raw Normal View History

{
2026-05-21 20:02:20 +00:00
flake.nixosModules.nest = { pkgs, ... }: {
users.users.nest = {
description = "nest";
isNormalUser = true;
extraGroups = [ "wheel" "network" ];
2026-05-21 20:02:20 +00:00
shell = pkgs.zsh;
};
};
}