my nixos/home-manager configuration
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add direnv to gitignore

youn acb09cc2 631d149c

+6
+3
home-manager/modules/git.nix
··· 33 33 }; 34 34 ignores = [ 35 35 ".zed" 36 + ".direnv/" 37 + ".env" 38 + ".envrc.local" 36 39 ]; 37 40 }; 38 41 };
+3
home-manager/modules/jujutsu.nix
··· 37 37 home.file.".gitignore" = { 38 38 text = '' 39 39 .zed/ 40 + .direnv/ 41 + .env 42 + .envrc.local 40 43 ''; 41 44 }; 42 45 };