Don't know why I need this

This commit is contained in:
Smaug123
2021-07-09 00:21:19 +01:00
parent cb6e35b6c4
commit 057ce85c95

View File

@@ -18,6 +18,11 @@
# changes in each release.
home.stateVersion = "21.05";
# TODO: why do I need this? surely home-manager can do it
home.sessionPath = [
"/etc/profiles/per-user/Patrick/bin"
];
home.packages =
[
pkgs.tmux
@@ -36,12 +41,18 @@
pkgs.handbrake
];
programs.tmux = {
shell = "\${pkgs.zsh}/bin/zsh";
};
programs.zsh = {
enable = true;
autocd = true;
dotDir = ".config/zsh";
enableAutosuggestions = true;
enableCompletion = true;
history = {
expireDuplicatesFirst = true;
};
oh-my-zsh = {
enable = true;
plugins = [ "git" "osx" "dircycle" "timer" ];
@@ -53,6 +64,7 @@
LC_CTYPE = "en_US.UTF-8";
};
shellAliases = {
vim = "nvim";
view = "vim -R";
};
};