nixos/modules/hardware/default.nix

17 lines
210 B
Nix
Raw Normal View History

2022-11-30 14:52:47 +01:00
# Hardware-related modules
{ ... }:
{
imports = [
2023-03-19 14:27:51 +01:00
./bluetooth
2023-03-19 16:01:30 +01:00
./debug
./drive-monitor
2023-03-18 14:40:57 +01:00
./firmware
2023-03-19 14:42:42 +01:00
./graphics
2023-12-24 00:07:29 +01:00
./id-card
./keychron
2022-11-30 14:54:05 +01:00
./sound
2023-01-08 00:46:09 +01:00
./thunderbolt
2023-12-24 00:07:29 +01:00
./yubikey
2022-11-30 14:52:47 +01:00
];
}