[modules] direnv.nix

This commit is contained in:
2026-02-10 10:38:43 +08:00
parent 55276b3de5
commit 614923302f
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, lib, config, ... }:
{
programs.direnv.enable = true;
programs.direnv.config = {
global = {
load_dotenv = true;
strict_env = true;
};
};
}