nixos/modules/users/nest.nix

11 lines
225 B
Nix
Raw Permalink Normal View History

{
2026-05-21 20:02:20 +00:00
flake.nixosModules.nest = { pkgs, ... }: {
users.users.nest = {
description = "nest";
isNormalUser = true;
2026-06-28 11:35:08 -04:00
extraGroups = [ "wheel" "network" "render" "video" ];
2026-05-21 20:02:20 +00:00
shell = pkgs.zsh;
};
};
}