Files
nix-config/home-manager/direnv.nix
2025-10-30 21:59:31 +01:00

14 lines
152 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}