Add direnv package and configuration

This commit is contained in:
Yorick Barbanneau 2023-10-01 16:09:48 +02:00
parent d52c0a105d
commit 063248c401
2 changed files with 8 additions and 0 deletions

View file

@ -9,5 +9,6 @@
./vifm
./bat.nix
./eza.nix
./direnv.nix
];
}

View file

@ -0,0 +1,7 @@
{
programs.direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
}