nixos/modules/hardware/default.nix

18 lines
224 B
Nix
Raw Permalink 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
2024-10-22 21:38:38 +02:00
./monitor
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
];
}