feat: init direnv

This commit is contained in:
notohh 2023-04-14 23:19:31 -04:00
parent b572ddfb87
commit 457121365b
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 10 additions and 0 deletions

View file

@ -10,6 +10,7 @@
./git
./lazygit
./zoxide
./direnv
];
home.packages = with pkgs; [

9
home/direnv/default.nix Normal file
View file

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