refactor(hardware): major refactor of hardware modules
This commit is contained in:
parent
8f229750b0
commit
4a177d2122
18 changed files with 95 additions and 191 deletions
19
system/modules/hardware/features/default.nix
Normal file
19
system/modules/hardware/features/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ 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";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue