Properly add direnv
This commit is contained in:
parent
991da142e6
commit
87079f64dc
|
|
@ -45,7 +45,6 @@ in
|
|||
shell = pkgs.${shellCfg.defaultShell};
|
||||
ignoreShellProgramCheck = true;
|
||||
packages = with pkgs; [
|
||||
direnv
|
||||
fzf
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
}:
|
||||
{
|
||||
imports = [
|
||||
./direnv.nix
|
||||
./hyprland
|
||||
./kitty.nix
|
||||
./overlays.nix
|
||||
|
|
|
|||
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue