11 lines
156 B
Nix
11 lines
156 B
Nix
{ lib, config, ... }:
|
|
{
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
}
|