enable direnv

This commit is contained in:
insects 2024-08-13 21:20:51 +02:00
parent 7ed64bec34
commit d64169c237
2 changed files with 7 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./fish.nix # fish shell configuration
./neovim.nix # neovim configuration, my "escape" editor
./lazygit.nix # my preferred git porcellain
./direnv.nix # smart cding
];
home.packages = with pkgs; [

View file

@ -0,0 +1,6 @@
{ ... }: {
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}