Add home manager

This commit is contained in:
2026-03-16 21:14:43 +01:00
parent 7175a457c7
commit d4b7339804
26 changed files with 740 additions and 0 deletions

13
home/programs/direnv.nix Normal file
View File

@@ -0,0 +1,13 @@
{ pkgs, config, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
home.file.".config/direnv/direnvrc" = {
source = ./direnv/direnvrc;
};
}