Use another git config for work machine

This commit is contained in:
2026-03-17 21:14:47 +01:00
parent ae92b5f392
commit 6c72d0b4bf
30 changed files with 55 additions and 2 deletions

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;
};
}