this repo has no description
1
fork

Configure Feed

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

Binary Cache

Ben C 6284c95a 1d5c2785

+27
+10
nixosConfigurations/aperture.nix
··· 16 16 system.stateVersion = "25.05"; 17 17 networking.hostName = "aperture"; 18 18 19 + nix.settings = { 20 + substituters = [ 21 + "https://bincache.bwc9876.dev" 22 + "https://cache.nixos.org" 23 + ]; 24 + trusted-public-keys = [ 25 + "bincache.bwc9876.dev:Hld97kaStrWo7zlLpiay2NDeDF3OpOYPzM0Kzfqj+Kw=" 26 + ]; 27 + }; 28 + 19 29 users.users = let 20 30 secureRoot = "/nix/persist/secure"; 21 31 in {
+17
nixosConfigurations/black-mesa.nix
··· 173 173 acmeRoot = null; # DNS 174 174 useACMEHost = "bwc9876.dev"; 175 175 }; 176 + virtualHosts."bincache.bwc9876.dev" = { 177 + addSSL = true; 178 + acmeRoot = null; 179 + useACMEHost = "bwc9876.dev"; 180 + locations."/" = { 181 + proxyPass = "http://localhost:6767"; 182 + recommendedProxySettings = true; 183 + }; 184 + }; 185 + }; 186 + 187 + services.nix-serve = { 188 + enable = true; 189 + package = pkgs.nix-serve-ng; 190 + port = 6767; 191 + bindAddress = "127.0.0.1"; 192 + secretKeyFile = "/nix/persist/secure/nix-serve.key"; 176 193 }; 177 194 178 195 security.acme = {