29 lines
527 B
Nix

{
options,
config,
lib,
...
}:
with lib;
with lib.frajul; let
cfg = config.apps.tools.direnv;
in {
options.apps.tools.direnv = with types; {
enable = mkBoolOpt false "Enable direnv";
};
config = mkIf cfg.enable {
home.programs.direnv = {
enable = true;
nix-direnv.enable = true;
enableNushellIntegration = true;
};
environment.sessionVariables.DIRENV_LOG_FORMAT = ""; # Blank so direnv will shut up
home.persist.directories = [
".local/share/direnv"
];
};
}