Skyler Grey | a7ae29f | 2023-02-28 10:44:34 +0000 | [diff] [blame] | 1 | { username, config, ... }: { |
2 | config = { | ||||
3 | hardware.opentabletdriver.enable = true; | ||||
4 | environment.persistence."/nix/persist".users.${username}.directories = [ | ||||
5 | ".config/OpenTabletDriver" | ||||
6 | ]; | ||||
7 | }; | ||||
8 | home = { | ||||
9 | home.file.".config/prelaunch/otd-daemon.sh".text = '' | ||||
10 | ${config.hardware.opentabletdriver.package}/bin/otd-daemon & | ||||
11 | ''; | ||||
12 | home.file.".config/prelaunch/otd-daemon.sh".executable = true; | ||||
13 | }; | ||||
14 | } |