nixos-configs/homeModules/zsh-basics.nix

19 lines
405 B
Nix
Raw Normal View History

{ lib, config, ... }:
2025-09-14 13:36:45 +02:00
{
options.my.zsh.enable = lib.mkEnableOption "zsh with basic settings";
2025-09-14 13:36:45 +02:00
config = lib.mkIf config.my.zsh.enable {
programs = {
command-not-found.enable = true;
dircolors.enable = true;
zsh = {
enable = true;
syntaxHighlighting.enable = true;
autosuggestion.enable = true;
enableVteIntegration = true;
};
2025-09-14 13:36:45 +02:00
};
};
}