Personal Nix setup
0
fork

Configure Feed

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

Review tangled git settings

+11 -1
+11 -1
modules/server/tangled.nix
··· 2 2 3 3 with lib; 4 4 let 5 - address = config.modules.router.adress; 6 5 cfg = config.modules.server; 7 6 in helpers.linuxAttrs { 8 7 options.modules.server.tangled = { ··· 38 37 enable = true; 39 38 config = { 40 39 gpg.program = "${pkgs.gnupg}/bin/gpg"; 40 + transfer.fsckObjects = true; 41 41 receive = { 42 42 advertisePushOptions = true; 43 43 denyFastForwards = false; 44 + denyDeleteCurrent = true; 44 45 fsckObjects = true; 45 46 autogc = true; 46 47 }; 48 + uploadpack = { 49 + allowFilter = true; 50 + allowReachableSHA1InWant = true; 51 + }; 52 + pack = { 53 + threads = 0; 54 + windowMemory = "256m"; 55 + }; 56 + repack.writeBitmaps = true; 47 57 include.path = config.age.secrets."gitconfig.private".path; 48 58 }; 49 59 };