This repository has been archived on 2024-07-29. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config/home/direnv/default.nix

15 lines
182 B
Nix
Raw Permalink Normal View History

2024-07-19 01:08:20 -05:00
{ lib, config, ... }:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;
2024-07-19 01:08:20 -05:00
config = {
global = {
hide_env_diff = true;
};
};
};
}