Split into modules (#50)

This commit is contained in:
Patrick Stevens
2024-04-12 20:33:50 +01:00
committed by GitHub
parent ccaa90d392
commit 3208bf16c5
17 changed files with 329 additions and 287 deletions

View File

@@ -0,0 +1,10 @@
{pkgs, ...}: {
home.packages = [
pkgs.direnv
];
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}