nix/module/common/Direnv.nix
2024-03-04 03:04:57 +03:00

10 lines
128 B
Nix

{ ... }: {
packages.direnv = {
enable = true;
silent = true;
direnvrcExtra = ''
export NIX_SHELL="direnv"
'';
};
}