add shell file manager

This commit is contained in:
Christoph Cullmann 2024-07-21 16:46:22 +02:00
parent 1ff49cd708
commit c32f789013
No known key found for this signature in database

View file

@ -109,15 +109,23 @@
enable = true;
};
# file manager
programs.yazi = {
enable = true;
enableNushellIntegration = true;
};
# enable keychain, we use the main user key
programs.keychain = {
enable = true;
enableNushellIntegration = true;
keys = [ "/home/cullmann/.ssh/id_ed25519" ];
};
# https://github.com/nix-community/nix-direnv
programs.direnv = {
enable = true;
enableNushellIntegration = true;
nix-direnv.enable = true;
};
}