Skip to content

Instantly share code, notes, and snippets.

@ixxie
Created September 17, 2020 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ixxie/118160f3ed79e6cc7b7cb4adca3d7424 to your computer and use it in GitHub Desktop.
Save ixxie/118160f3ed79e6cc7b7cb4adca3d7424 to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
{
nixpkgs.overlays = [
(self: super: {
libwacom = super.libwacom.overrideAttrs (old: rec {
version = "1.5.0";
src = super.fetchFromGitHub {
owner = "linuxwacom";
repo = "libwacom";
rev = "libwacom-${version}";
sha256 = "1a3qkzpkag1vqd2xl7b7f2b8kbg1y1g6gg5ydzb1ppyqw3zdjf9x";
};
});
})
];
environment.systemPackages = with pkgs; [ wacomtablet libwacom libinput ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment