nixos-config/programs/zsh/default.nix
Charlotte Van Petegem 4256a94080 Initial commit
2020-02-10 17:27:13 +01:00

45 lines
1 KiB
Nix

{ ... }:
{
programs.command-not-found.enable = true;
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.autojump ];
programs.zsh = {
enable = true;
enableAutosuggestions = true;
dotDir = ".config/zsh";
history.path = "\$HOME/.config/zsh/zsh_history";
oh-my-zsh = {
enable = true;
plugins = [
"autojump"
"command-not-found"
"common-aliases"
"extract"
"history-substring-search"
"git"
"sudo"
"systemd"
"tmux"
];
theme = "agnoster";
};
plugins = [
{
name = "zsh-syntax-highlighting";
src = pkgs.fetchFromGitHub {
owner = "zsh-users";
repo = "zsh-syntax-highlighting";
rev = "0.6.0";
sha256 = "0zmq66dzasmr5pwribyh4kbkk23jxbpdw4rjxx0i7dx8jjp2lzl4";
};
}
];
sessionVariables = {
DEFAULT_USER = "charlotte";
EDITOR = "nvim";
};
};
};
}