mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
12 lines
175 B
Nix
12 lines
175 B
Nix
{
|
|
flake,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs.direnv = {
|
|
enable = true;
|
|
package = flake.inputs.direnv.packages.${pkgs.system}.default;
|
|
nix-direnv.enable = true;
|
|
};
|
|
}
|