Default to zsh for nest

This commit is contained in:
KnightArtorias 2026-05-21 20:02:20 +00:00
parent fd1c021c38
commit 0b5ec36960

View file

@ -1,9 +1,10 @@
{ {
flake.nixosModules.nest = { flake.nixosModules.nest = { pkgs, ... }: {
users.users.nest = { users.users.nest = {
description = "nest"; description = "nest";
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "network" ]; extraGroups = [ "wheel" "network" ];
shell = pkgs.zsh;
}; };
}; };
} }