Moved hardware system to fancier importer

This commit is contained in:
kat witch 2021-08-07 03:40:02 +01:00
parent 788f1e575c
commit fa0dd9696f
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
4 changed files with 6 additions and 10 deletions

View file

@ -1,12 +1,7 @@
rec {
ms-7b86-base = ./ms-7b86;
v330-14arr-base = ./v330-14arr;
rm-310-base = ./rm-310;
hcloud-imperative = ./hcloud-imperative;
ryzen = ./ryzen;
intel = ./intel;
amdgpu = ./amdgpu;
let hardwareProfiles = { lib }:
let profiles = with profiles; lib.modList {
modulesDir = ./.;
} // {
ms-7b86 = {
imports = [
ms-7b86-base
@ -27,4 +22,5 @@ rec {
intel
];
};
}
}; in profiles;
in { __functor = self: hardwareProfiles; isModule = false; }