16 lines
314 B
Nix
16 lines
314 B
Nix
|
_: {
|
||
|
programs.direnv = {
|
||
|
enable = true;
|
||
|
# PLEASE BE SILENT
|
||
|
silent = true;
|
||
|
|
||
|
# We want direnv to load in our nix dev shells
|
||
|
loadInNixShell = true;
|
||
|
|
||
|
# Integrations for all our shells
|
||
|
enableZshIntegration = true;
|
||
|
enableFishIntegration = true;
|
||
|
enableBashIntegration = true;
|
||
|
};
|
||
|
}
|