diff options
author | lassulus <lassulus@lassul.us> | 2022-09-19 10:59:27 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-09-19 10:59:27 +0200 |
commit | e5aa44907512f0ba97def7549e199d365ff29db6 (patch) | |
tree | 9ddaf6568ea054ab8474887d239da7dd6d9ca4ca /lass | |
parent | 48cb415d2fb845ec0c2853f6440bec5fae589930 (diff) |
l binary-cache-server: use nix-serve-ng
Diffstat (limited to 'lass')
-rw-r--r-- | lass/2configs/binary-cache/server.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lass/2configs/binary-cache/server.nix b/lass/2configs/binary-cache/server.nix index 1abf51ae6..dcc4b5f1a 100644 --- a/lass/2configs/binary-cache/server.nix +++ b/lass/2configs/binary-cache/server.nix @@ -1,6 +1,17 @@ -{ config, lib, pkgs, stockholm, ...}: +{ config, lib, pkgs, ...}: +let + nix-serve-ng-src = builtins.fetchTarball { + # Replace the URL and hash with whatever you actually need + url = "https://github.com/aristanetworks/nix-serve-ng/archive/1937593598bb1285b41804f25cd6f9ddd4d5f1cb.tar.gz"; + sha256 = "1lqd207gbx1wjbhky33d2r8xi6avfbx4v0kpsvn84zaanifdgz2g"; + }; + + nix-serve-ng = import nix-serve-ng-src; + +in { + imports = [ nix-serve-ng.nixosModules.default ]; # generate private key with: # nix-store --generate-binary-cache-key my-secret-key my-public-key services.nix-serve = { |