11 lines
174 B
Nix
11 lines
174 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableBashIntegration = true; # or enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
}
|
|
|