NixOS-based container for running GitHub actions
0
fork

Configure Feed

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

slim down git further

+19 -14
+19 -14
flake.nix
··· 53 53 clientOnly = true; 54 54 }; 55 55 }) 56 - # (final: prev: { 57 - # git = prev.git.override { 58 - # perlSupport = false; 59 - # pythonSupport = false; 60 - # svnSupport = false; 61 - # sendEmailSupport = false; 62 - # withManual = false; 63 - # withSsh = true; 64 - # openssh = prev.openssh; 65 - # }; 66 - # }) 56 + (final: prev: { 57 + git = prev.git.override { 58 + doInstallCheck = false; 59 + guiSupport = false; 60 + perlSupport = false; 61 + pythonSupport = false; 62 + svnSupport = false; 63 + sendEmailSupport = false; 64 + withLibSecret = false; 65 + withManual = false; 66 + withSsh = false; 67 + }; 68 + }) 67 69 ]; 68 70 }; 69 71 forAllSystems = ( ··· 84 86 # clientOnly = true; 85 87 # }; 86 88 git = pkgs.git.override { 89 + doInstallCheck = false; 90 + guiSupport = false; 87 91 perlSupport = false; 88 92 pythonSupport = false; 89 93 svnSupport = false; 90 94 sendEmailSupport = false; 95 + withLibSecret = false; 91 96 withManual = false; 92 - withSsh = true; 97 + withSsh = false; 93 98 }; 94 99 nixos-runner = 95 100 let ··· 106 111 pkgs.forgejo-cli 107 112 pkgs.gawk 108 113 pkgs.gh 109 - # pkgs.git 114 + pkgs.git 110 115 pkgs.glibc 111 116 pkgs.gnugrep 112 117 pkgs.gnused ··· 131 136 132 137 # self.packages.${pkgs.stdenv.hostPlatform.system}.sudo 133 138 # self.packages.${pkgs.stdenv.hostPlatform.system}.docker-client 134 - self.packages.${pkgs.stdenv.hostPlatform.system}.git 139 + # self.packages.${pkgs.stdenv.hostPlatform.system}.git 135 140 push-container.packages.${pkgs.stdenv.hostPlatform.system}.push-container 136 141 ]; 137 142