1
0
Fork 0
nixos/config/zsh.nix

18 lines
314 B
Nix

{ config, lib, pkgs, ... }:
with lib;
mkIf (elem "zsh" config.machine.conffiles) {
programs.zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
ohMyZsh = {
enable = true;
plugins = [ "git" "python" "man" ];
theme = "gentoo";
};
};
}