12 lines
139 B
Nix
12 lines
139 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
direnv = {
|
|
enable = true;
|
|
silent = true;
|
|
enableZshIntegration = true;
|
|
};
|
|
};
|
|
|
|
}
|