nix: move combinators to top level as a flake module

This commit is contained in:
Primrose 2024-07-13 14:15:38 +02:00
parent 173e1440c1
commit 952c13b446
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
5 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,14 @@
{ withSystem, flake-parts-lib, ... }:
let
inherit (flake-parts-lib) importApply;
flakeModules.combinators = importApply ./it.nix { inherit withSystem; };
in
{
imports = [ flakeModules.combinators ];
flake = {
inherit flakeModules;
};
}