8 lines
114 B
Nix
8 lines
114 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Install ZSH for all users
|
|
programs.zsh.enable = true;
|
|
users.defaultUserShell = pkgs.zsh;
|
|
}
|