more basic root settings

This commit is contained in:
Christoph Cullmann 2024-06-25 21:28:50 +02:00
parent 66ce583ef1
commit 9d7eeacf44
No known key found for this signature in database

View file

@ -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;