Files
nixos/system/hardware.nix

17 lines
272 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
opentabletdriver.enable = true;
uinput.enable = true;
2026-03-09 21:43:40 +00:00
};
2026-03-28 17:21:19 +00:00
boot.kernelModules = [ "uinput" ]
2026-03-09 21:43:40 +00:00
}