my nixos/home-manager configuration
1
fork

Configure Feed

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

feat(git): move specific ignores to individual modules

+9 -3
+5
home-manager/modules/dev/direnv.nix
··· 13 13 nix-direnv.enable = true; 14 14 silent = true; 15 15 }; 16 + 17 + programs.git.ignores = lib.mkIf config.programs.git.enable [ 18 + ".direnv/" 19 + ".envrc.local" 20 + ]; 16 21 }; 17 22 }
-3
home-manager/modules/dev/git.nix
··· 48 48 }; 49 49 }; 50 50 ignores = [ 51 - ".zed" 52 - ".direnv/" 53 51 ".env" 54 - ".envrc.local" 55 52 ]; 56 53 }; 57 54 };
+4
home-manager/modules/dev/zed-editor.nix
··· 39 39 xdg.configFile."tombi/config.toml" = { 40 40 source = config.lib.file.mkOutOfStoreSymlink "${user.configDirectory}/tombi/config.toml"; 41 41 }; 42 + 43 + programs.git.ignores = lib.mkIf config.programs.git.enable [ 44 + ".zed" 45 + ]; 42 46 }; 43 47 }