1
0
Fork 0
nix-configuration/modules/base/shell.nix
2024-02-29 09:53:34 -05:00

8 lines
114 B
Nix

{ pkgs, ... }:
{
# Install ZSH for all users
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}