Fix home-manager direnv config
This commit is contained in:
@ -11,27 +11,26 @@ inputs,
|
||||
system, # The system architecture for this host (eg. `x86_64-linux`).
|
||||
target, # The Snowfall Lib target for this system (eg. `x86_64-iso`).
|
||||
format, # A normalized name for the system target (eg. `iso`).
|
||||
virtual
|
||||
, # A boolean to determine whether this system is a virtual target using nixos-generators.
|
||||
virtual, # A boolean to determine whether this system is a virtual target using nixos-generators.
|
||||
systems, # An attribute map of your defined hosts.
|
||||
|
||||
# All other arguments come from the module system.
|
||||
config, ... }:
|
||||
|
||||
with lib;
|
||||
config,
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
cfg = config.modules.shell.direnv;
|
||||
shellcfg = config.modules.shell;
|
||||
in {
|
||||
options.modules.shell.direnv = { enable = mkOption { default = false; }; };
|
||||
in
|
||||
{
|
||||
options.modules.shell.direnv = {
|
||||
enable = lib.mkOption { default = false; };
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [ direnv nix-direnv ];
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
} // mkIf shellcfg.zsh.enable { enableZshIntegration = true; }
|
||||
// mkIf shellcfg.fish.enable { enableFishIntegration = true; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user