buildClan: fix missing argument clan

This commit is contained in:
DavHau
2023-09-02 18:24:34 +02:00
parent d30f640321
commit 03808d9fbc
2 changed files with 5 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
{ lib
, inputs
, self
, ...
}: {
imports = [
@@ -7,6 +8,7 @@
];
flake.lib = import ./default.nix {
inherit lib;
inherit (inputs) nixpkgs clan;
inherit self;
inherit (inputs) nixpkgs;
};
}