added nix-direnv

This commit is contained in:
willifan 2025-01-11 16:57:10 +01:00
parent 392f3952ce
commit 48b3deb874
2 changed files with 12 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./shell
./tmux
./utils
./direnv.nix
./git.nix
./stylix.nix
];

View file

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