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
Wyatt J. Miller 08a543fabe added significant items
added fish shellInit, removed top level empty configuration, removed
lib.mkIf logic for fish aliases
2024-07-21 10:03:25 -04:00

15 lines
182 B
Nix

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