17 lines
307 B
Nix
17 lines
307 B
Nix
{
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.lists) map;
|
|
inherit (lib.path) append;
|
|
in {
|
|
imports = map (append ../common/optional) [
|
|
"cpu/intel.nix"
|
|
"displaylink.nix"
|
|
"gpu/intel.nix"
|
|
"suspend.nix"
|
|
"v4l2.nix"
|
|
"wayland.nix"
|
|
"yubikey.nix"
|
|
];
|
|
}
|