mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
10 lines
202 B
Nix
10 lines
202 B
Nix
{ config, ... }: {
|
|
|
|
home-manager.users.${config.user}.programs.direnv = {
|
|
enable = true;
|
|
nix-direnv.enable = true;
|
|
config = { whitelist = { prefix = [ config.dotfilesPath ]; }; };
|
|
};
|
|
|
|
}
|