ooknet/home/modules/console/tools/direnv.nix

15 lines
211 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.tools.direnv;
in
{
config = mkIf cfg.enable {
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
};
}