dotfiles/modules/shell/direnv.nix

10 lines
202 B
Nix
Raw Normal View History

2022-05-06 13:29:25 +00:00
{ config, ... }: {
home-manager.users.${config.user}.programs.direnv = {
enable = true;
nix-direnv.enable = true;
2022-05-29 17:44:45 +00:00
config = { whitelist = { prefix = [ config.dotfilesPath ]; }; };
2022-05-06 13:29:25 +00:00
};
}