nixos/modules/home/shell/direnv/default.nix

18 lines
305 B
Nix
Raw Normal View History

2024-10-28 21:26:34 +01:00
{ config, lib, ... }:
with lib;
let
cfg = config.modules.home.shell.direnv;
in
{
options.modules.home.shell.direnv = {
enable = mkEnableOption ''
Enable direnv with my custom configurations
'';
};
config = mkIf cfg.enable {
programs.direnv = {
enable = true;
};
};
}