diff --git a/home/home.nix b/home/home.nix index 6844290..4573e0d 100644 --- a/home/home.nix +++ b/home/home.nix @@ -60,6 +60,7 @@ let luminanceHDR exiftool gimp + xournal ] ++ ( with gimpPlugins; [ diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 4f1d773..60a38a9 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -140,6 +140,9 @@ in # Enable touchpad support. services.xserver.libinput.enable = true; + # while libinput also supports graphic tablets, enable more-specific wacom driver + services.xserver.wacom.enable = true; + # Enable the KDE Desktop Environment. services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true;