{ config, pkgs, ... }: { home.packages = with pkgs; [ inotify-tools ]; programs.zsh = { enable = true; shellAliases = { ll = "ls -l"; unixos = "sudo nixos-rebuild switch --flake /etc/nixos"; uhome = "home-manager switch --flake /etc/nixos"; watchfile = "/etc/nixos/programs/scripts/watchfile.sh "; }; history = { size = 10000; path = "${config.xdg.dataHome}/zsh/history"; ignoreDups = true; }; oh-my-zsh = { enable = true; plugins = [ "git" "thefuck" "pass" ]; theme = "dst"; }; syntaxHighlighting.enable = true; }; }