feat: add direnv

This commit is contained in:
EinEtwas 2024-10-23 15:48:42 +02:00
parent 1cfa1fa051
commit d94f5ee97e
2 changed files with 8 additions and 0 deletions

View file

@ -65,6 +65,7 @@
./keyring.nix
./ssh.nix
./blueman.nix
./direnv.nix
];
home.pointerCursor = {

7
home/direnv.nix Normal file
View file

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