12 lines
213 B
Nix
12 lines
213 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.xserver.wacom.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
libwacom # Libraries, configuration, and diagnostic tools for Wacom tablets
|
|
];
|
|
|
|
}
|