Added direnv configuration
This commit is contained in:
parent
fd078a45bc
commit
b6d07f92d5
|
@ -15,10 +15,11 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
aa = {
|
||||
tools = {
|
||||
direnv.enable = true;
|
||||
exa.enable = true;
|
||||
git.enable = true;
|
||||
gpg.enable = true;
|
||||
zsh.enable = true;
|
||||
exa.enable = true;
|
||||
};
|
||||
|
||||
apps = {
|
||||
|
|
23
modules/tools/direnv/default.nix
Normal file
23
modules/tools/direnv/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.aa.tools.direnv;
|
||||
in {
|
||||
options.aa.tools.direnv = with lib.types; {
|
||||
enable = mkEnableOption "direnv";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
aa.home.extraOptions = {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue