niksos/hosts/hape/profile.nix

24 lines
445 B
Nix
Raw Normal View History

2024-08-06 18:16:48 +02:00
{
lib,
...
}: let
inherit (lib.lists) map;
inherit (lib.path) append;
in {
imports = map (append ../common/optional) [
"adb.nix"
"asusd.nix"
2024-09-01 23:40:43 +02:00
"cpu/intel.nix"
"gpu/intel.nix"
"mullvad-vpn.nix"
"opentabletdriver.nix"
"power-supply.nix"
"qmk.nix"
"suspend.nix"
"v4l2.nix"
"wayland.nix"
"wireshark.nix"
"yubikey.nix"
2024-07-15 23:18:25 +02:00
];
}