niksos/hosts/work/profile.nix

18 lines
307 B
Nix
Raw Normal View History

2024-08-28 22:21:15 +02:00
{
lib,
...
}: let
inherit (lib.lists) map;
inherit (lib.path) append;
in {
imports = map (append ../common/optional) [
"cpu/intel.nix"
"displaylink.nix"
2024-09-01 23:40:43 +02:00
"gpu/intel.nix"
"suspend.nix"
"v4l2.nix"
"wayland.nix"
"yubikey.nix"
2024-08-28 22:21:15 +02:00
];
}