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