summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-29 18:23:05 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-29 18:23:05 +0200
commitd54271415669f4e0c77368229151d065f66f51ff (patch)
tree78daf2d59b6ad3ad0bfca917da55d3e8d0c599a5
parent7da47f07056cd9c8ceaf1f20282e6db1dde04646 (diff)
back to zsh, need a posix like shell
-rw-r--r--share/home.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/home.nix b/share/home.nix
index 6a06ef4..eab54ba 100644
--- a/share/home.nix
+++ b/share/home.nix
@@ -134,20 +134,20 @@
# file manager
programs.yazi = {
enable = true;
- enableNushellIntegration = true;
+ enableZshIntegration = true;
};
# enable keychain, we use the main user key
programs.keychain = {
enable = true;
- enableNushellIntegration = true;
+ enableZshIntegration = true;
keys = [ "/home/cullmann/.ssh/id_ed25519" ];
};
# https://github.com/nix-community/nix-direnv
programs.direnv = {
enable = true;
- enableNushellIntegration = true;
+ enableZshIntegration = true;
nix-direnv.enable = true;
};
}