home/direnv: init

This commit is contained in:
Oystein Kristoffer Tveit 2024-01-23 08:52:20 +01:00
parent 7603ee6b81
commit ca4f1469cb
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 9 additions and 0 deletions

View File

@ -13,6 +13,7 @@ in {
./programs/atuin.nix
./programs/comma.nix
./programs/direnv.nix
./programs/firefox.nix
./programs/gdb.nix
./programs/gh.nix

8
home/programs/direnv.nix Normal file
View File

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