blob: 697cb4c05daf62f7d53a499b547ca92772f062bb (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ lib, config, pkgs, ... }: {
options = {
zsh.enable = lib.mkEnableOption "use zsh as default shell";
};
config = lib.mkIf config.zsh.enable {
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
};
}
|