Loading nixos/modules/hardware/opentabletdriver.nix +9 −11 Original line number Diff line number Diff line Loading @@ -53,16 +53,14 @@ in boot.blacklistedKernelModules = cfg.blacklistedKernelModules; systemd.user.services.opentabletdriver = with pkgs; lib.mkIf cfg.daemon.enable { systemd.user.services.opentabletdriver = lib.mkIf cfg.daemon.enable { description = "Open source, cross-platform, user-mode tablet driver"; wantedBy = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ]; serviceConfig = { Type = "simple"; ExecStart = "${cfg.package}/bin/otd-daemon"; ExecStart = lib.getExe' cfg.package "otd-daemon"; Restart = "on-failure"; }; }; Loading Loading
nixos/modules/hardware/opentabletdriver.nix +9 −11 Original line number Diff line number Diff line Loading @@ -53,16 +53,14 @@ in boot.blacklistedKernelModules = cfg.blacklistedKernelModules; systemd.user.services.opentabletdriver = with pkgs; lib.mkIf cfg.daemon.enable { systemd.user.services.opentabletdriver = lib.mkIf cfg.daemon.enable { description = "Open source, cross-platform, user-mode tablet driver"; wantedBy = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ]; serviceConfig = { Type = "simple"; ExecStart = "${cfg.package}/bin/otd-daemon"; ExecStart = lib.getExe' cfg.package "otd-daemon"; Restart = "on-failure"; }; }; Loading