nixos-config/home/shell/direnv.nix

16 lines
246 B
Nix
Raw Normal View History

2019-12-12 15:44:05 +01:00
{ config, pkgs, ... }:
with pkgs;
{
programs.direnv = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
stdlib = builtins.readFile ./.direnvrc;
};
home.file.".envrc".text = ''
dotenv
'';
}