From 8dd411e6d98f9de7b47e17fa84860a9170a71775 Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Thu, 6 Jan 2022 14:27:12 +0100 Subject: [PATCH] surface: Fix issues with config --- modules/hardware/surface-pro6.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/hardware/surface-pro6.nix b/modules/hardware/surface-pro6.nix index 0b7c8f2..caa5e03 100644 --- a/modules/hardware/surface-pro6.nix +++ b/modules/hardware/surface-pro6.nix @@ -2,6 +2,8 @@ let cfg = config.ptw.hardware.surface; + fetchurl = pkgs.fetchurl; + commit = "69d1e5826e6380c8ff0cd532e244482097562c3d"; in { options.ptw.hardware.surface = { enable = lib.mkEnableOption "Enable support for the Microsoft Surface Pro 6"; @@ -25,7 +27,7 @@ in { }; hardware.video.hidpi.enable = true; - systemd.services.iptsd = { + systemd.services.iptsd = lib.mkForce { description = "Userspace daemon for Intel Precise Touch & Stylus"; wantedBy = [ "multi-user.target" ]; wants = [ "dev-ipts-15.device" ];