nix-git/modules/zsh.nix

9 lines
169 B
Nix
Raw Normal View History

2023-09-02 15:33:36 +02:00
{ config, pkgs, ... }:
{
# https://nixos.wiki/wiki/Command_Shell
# https://nixos.wiki/wiki/Zsh
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
}