added direnv

This commit is contained in:
Gabriella Bere 2025-01-15 23:45:04 +00:00
parent c21f01f1c5
commit fd2da06ebf
3 changed files with 15 additions and 5 deletions

7
home-manager/direnv.nix Normal file
View file

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