9 lines
188 B
Nix
9 lines
188 B
Nix
|
|
# profiles/sets/coding/core/direnv.nix
|
||
|
|
# direnv + nix-direnv for automatic per-project environments.
|
||
|
|
{...}: {
|
||
|
|
programs.direnv = {
|
||
|
|
enable = true;
|
||
|
|
nix-direnv.enable = true;
|
||
|
|
};
|
||
|
|
}
|