10 lines
209 B
Nix
10 lines
209 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.drawing-tablet =
|
|
{ pkgs, ... }:
|
|
{
|
|
hardware.opentabletdriver.enable = true;
|
|
hardware.uinput.enable = true;
|
|
boot.kernelModules = [ "uinput" ];
|
|
};
|
|
}
|