2024-11-26 08:27:14 +00:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
2024-12-10 21:40:33 +00:00
|
|
|
with lib;
|
|
|
|
|
2024-03-16 22:12:53 +00:00
|
|
|
{
|
2024-12-10 21:40:33 +00:00
|
|
|
options.features.cli.direnv.enable = mkEnableOption "Enable direnv";
|
2024-11-26 08:27:14 +00:00
|
|
|
|
2024-12-10 21:40:33 +00:00
|
|
|
config = mkIf config.features.cli.direnv.enable {
|
2024-11-26 08:27:14 +00:00
|
|
|
programs.direnv = {
|
|
|
|
enable = true;
|
|
|
|
enableZshIntegration = true;
|
|
|
|
nix-direnv.enable = true;
|
|
|
|
};
|
2024-03-16 22:12:53 +00:00
|
|
|
};
|
|
|
|
}
|