home-manager/common/direnv.nix

9 lines
129 B
Nix
Raw Normal View History

2023-08-26 16:35:30 +00:00
{...}: {
config.programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableBashIntegration = true;
};
2023-08-03 10:58:25 +00:00
}