fix default module

This commit is contained in:
blahai 2025-02-17 19:47:58 +02:00
parent 522c08cf37
commit d882f4a1e8
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc

View file

@ -3,5 +3,9 @@ let
refind = import ./refind;
haicache = import ./haicache.nix;
};
default = {...}: {
imports = builtins.attrValues modules;
};
in
modules // {default = modules;}
modules // {inherit default;}