Modularize config

This commit is contained in:
2026-01-16 21:35:28 +01:00
parent 19cd15ebc5
commit dcb0ea1961
5 changed files with 102 additions and 83 deletions

9
programs/direnv.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}