Files
nixos/system/hardware.nix
T

17 lines
275 B
Nix
Raw Normal View History

2026-03-09 21:43:40 +00:00
{ ... }:
{
hardware = {
bluetooth.enable = true;
graphics = {
enable = true;
enable32Bit = true;
};
2026-03-28 17:21:19 +00:00
2026-06-08 18:39:52 +01:00
# opentabletdriver.enable = true;
2026-03-28 17:21:19 +00:00
uinput.enable = true;
2026-03-09 21:43:40 +00:00
};
2026-03-28 17:21:40 +00:00
boot.kernelModules = [ "uinput" ];
2026-03-09 21:43:40 +00:00
}