From 0ed49a9885c55f4a291295e40ffd394d72fe19e9 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Wed, 14 Oct 2020 01:38:48 +0200 Subject: [PATCH] enable wacom grpahics tablet driver and add notes app --- home/home.nix | 1 + nixos/configuration.nix | 3 +++ 2 files changed, 4 insertions(+) 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;