refactor(systemModules): move hardware --> device/hardware, add function option
This commit is contained in:
parent
34ad7d3d61
commit
7679a227ac
17 changed files with 23 additions and 7 deletions
7
system/modules/device/default.nix
Normal file
7
system/modules/device/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./function
|
||||
./type
|
||||
./hardware
|
||||
];
|
||||
}
|
||||
13
system/modules/device/function/default.nix
Normal file
13
system/modules/device/function/default.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ lib, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) types mkOption;
|
||||
in
|
||||
|
||||
{
|
||||
options.systemModules.device.function = mkOption {
|
||||
type = with types; listOf (enum ["workstation" "media server" "gaming"]);
|
||||
default = [];
|
||||
description = "Primary function/s of the device";
|
||||
};
|
||||
}
|
||||
|
|
@ -5,9 +5,10 @@ let
|
|||
in
|
||||
|
||||
{
|
||||
options.systemModules.meta.device.type = mkOption {
|
||||
options.systemModules.device.type = mkOption {
|
||||
type = types.enum ["desktop" "server" "phone" "vm"];
|
||||
default = "desktop";
|
||||
description = "Meta option to describe what type of device the host is";
|
||||
description = "Define what type of device the host is";
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
imports = [
|
||||
./device
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue