niksos/hosts/del/profile.nix

24 lines
445 B
Nix
Raw Normal View History

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