u/Frogvara

▲ 3 r/NixOS

OpenTabletDriver - Unstable Package not found

Hi all,

A new version of OpenTabletDriver (0.6.7) dropped recently, and is now available on the NixOS unstable channel.

Issue is, I'm unable to get it to work!

This is in my config (I'm not currently using flakes, and please don't suggest flakes as I'm still learning them and setting things up):

{
 config,
 pkgs,
 ...
}: let
 baseconfig = {allowUnfree = true;};
 unstable = import <nixos-unstable> {config = baseconfig;};
in {
 environment.systemPackages = with pkgs; [
   unstable.godot-mono
 ];
 hardware.opentabletdriver = {
   enable = true;
   daemon.enable = true;
   package = unstable.opentabletdriver;
 };
}

running otd --version then shows 0.6.6.2, the older version of OTD...

I have, of course, tried various combinations, such as having only unstable.otd in the with pkgs chunk, or having unstable.otd in both the OTD settings and the with pkgs chunk... Multiple restarts, --upgrade on rebuild, garbage collecting.

You may also notice I have godot-mono in there, and that one is working just fine, getting me the 4.6 version I want.

Any help is appreciated, thank you!

reddit.com
u/Frogvara — 11 days ago