refactor(systemModules): move hardware --> device/hardware, add function option

This commit is contained in:
ooks-io 2024-04-24 23:44:06 +12:00
parent 34ad7d3d61
commit 7679a227ac
17 changed files with 23 additions and 7 deletions

View file

@ -1,19 +0,0 @@
{ lib, config, ... }:
let
inherit (lib) types mkOption;
in
{
imports = [
./bluetooth
./backlight
./battery
];
options.systemModules.hardware.features = mkOption {
type = with types; listOf (enum ["bluetooth" "backlight" "battery"]);
default = [];
description = "What extra hardware feature system modules to use";
};
}