mirror of
https://github.com/Smaug123/nix-dotfiles
synced 2025-10-06 06:58:41 +00:00
11 lines
167 B
Nix
11 lines
167 B
Nix
{pkgs, ...}: {
|
|
home.packages = [
|
|
pkgs.direnv
|
|
];
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
}
|