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
2024-07-19 02:08:20 -04:00

14 lines
152 B
Nix

{ lib, config, ... }:
{
programs.direnv = {
enable = true;
config = {
global = {
hide_env_diff = true;
};
};
};
}