nixos/modules/shell/zsh.nix
2023-07-07 22:46:47 +03:00

18 lines
391 B
Nix

{ options, config, lib, pkgs, ...}:
with lib;
let cfg = config.modules.shell.zsh;
in {
options.modules.shell.zsh = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
programs.zsh = {
enable = true;
promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-heme";
};
};
}