summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-06-25 21:28:50 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-06-25 21:28:50 +0200
commit9d7eeacf44561e67763fc048357c1fb8c1bc2a64 (patch)
treee348b6b88b6407b9acd382507af95584226a8b3b
parent66ce583ef1ba7c10e4ad2378d54f816c71b5ca3e (diff)
more basic root settings
-rw-r--r--common.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/common.nix b/common.nix
index 5b740be..ec84949 100644
--- a/common.nix
+++ b/common.nix
@@ -542,9 +542,7 @@ in
# initial version
home.stateVersion = "22.11";
- # zsh with some nice prompt
- programs.zoxide.enable = true;
- programs.zoxide.options = [ "--cmd" "cd" ];
+ # basic ZSH
programs.zsh.enable = true;
};
@@ -576,9 +574,7 @@ in
# initial version
home.stateVersion = "22.11";
- # zsh with some nice prompt and extra main user configuration
- programs.zoxide.enable = true;
- programs.zoxide.options = [ "--cmd" "cd" ];
+ # ZSH with some nice prompt and extra main user configuration
programs.zsh = {
# zsh with extras wanted
enable = true;
@@ -615,6 +611,12 @@ in
};
};
+ # nice cd
+ programs.zoxide = {
+ enable = true;
+ options = [ "--cmd" "cd" ];
+ };
+
# enable keychain
programs.keychain = {
enable = true;