8 lines
150 B
Nix
8 lines
150 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
enableNixDirenvIntegration = true;
|
|
};
|
|
}
|