Committed after home build
diff --git a/users/minion/home.nix b/users/minion/home.nix
index 440bc98..a8b6e82 100644
--- a/users/minion/home.nix
+++ b/users/minion/home.nix
@@ -44,6 +44,27 @@
hue-cli
];
+ programs.zsh = {
+ enable = true;
+ oh-my-zsh = {
+ enable = true;
+ plugins = [ "zsh-autosuggestions" "zsh-syntax-highlighting" "git" "thefuck" ];
+ theme = "crunch";
+ };
+ history = {
+ size = 10000;
+ path = "${config.xdg.dataHome}/zsh/history";
+ expireDuplicatesFirst = true;
+ extended = true;
+ };
+ initExtra = ''
+ bindkey "\'\'$\{key[Up]}" up-line-or-search
+ '';
+ enableSyntaxHighlighting = true;
+ autocd = true;
+ dotDir = "${config.xdg.dataHome}/zsh";
+ };
+
programs.git = {
enable = true;