nix-config/home/direnv.nix
Bruno BELANYI 3787cf4da1 home: add direnv
This uses nixos-community's version of `use_nix` which allows for
persistent shells, and is now compatible with flakes.
2021-03-03 17:02:48 +00:00

9 lines
123 B
Nix

{ ... }:
{
programs.direnv = {
enable = true;
# A better `use_nix`
enableNixDirenvIntegration = true;
};
}