feat: Add options for multiple decoupled caches with same storage backend

This commit is contained in:
sinavir 2024-07-08 19:35:59 +02:00
parent e7f078780a
commit 279a3d67e5
4 changed files with 172 additions and 114 deletions

8
tests/default.nix Normal file
View file

@ -0,0 +1,8 @@
let
sources = import ../npins;
inherit (sources) nixpkgs;
pkgs = import nixpkgs { overlays = [ (import ../pkgs/overlay.nix) ]; };
in
{
basic = pkgs.callPackage ./basic.nix { };
}