more basic root settings
This commit is contained in:
parent
66ce583ef1
commit
9d7eeacf44
14
common.nix
14
common.nix
|
@ -542,9 +542,7 @@ in
|
||||||
# initial version
|
# initial version
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
||||||
# zsh with some nice prompt
|
# basic ZSH
|
||||||
programs.zoxide.enable = true;
|
|
||||||
programs.zoxide.options = [ "--cmd" "cd" ];
|
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -576,9 +574,7 @@ in
|
||||||
# initial version
|
# initial version
|
||||||
home.stateVersion = "22.11";
|
home.stateVersion = "22.11";
|
||||||
|
|
||||||
# zsh with some nice prompt and extra main user configuration
|
# ZSH with some nice prompt and extra main user configuration
|
||||||
programs.zoxide.enable = true;
|
|
||||||
programs.zoxide.options = [ "--cmd" "cd" ];
|
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
# zsh with extras wanted
|
# zsh with extras wanted
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -615,6 +611,12 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# nice cd
|
||||||
|
programs.zoxide = {
|
||||||
|
enable = true;
|
||||||
|
options = [ "--cmd" "cd" ];
|
||||||
|
};
|
||||||
|
|
||||||
# enable keychain
|
# enable keychain
|
||||||
programs.keychain = {
|
programs.keychain = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue