change iptsd and system-control to nixpkgs versions - fixes iptsd bug

This commit is contained in:
Flameopathic
2024-06-20 20:45:41 -04:00
committed by GitHub
parent 083823b790
commit 27487bcd12
5 changed files with 6 additions and 81 deletions

View File

@@ -1,4 +1,4 @@
{ ... }:
{ lib, pkgs, ... }:
# This module is intended to support the Surface Laptop range, specifically those with AMD CPUs.
# It's expected it will work equally well on many other Surface models, but they may need further
@@ -15,6 +15,6 @@
];
# Note: The IPTS module is not often required on devices with Surface Laptop 3 (AMD).
microsoft-surface.ipts.enable = true;
microsoft-surface.surface-control.enable = true;
services.iptsd.enable = lib.mkDefault true;
environment.systemPackages = [ pkgs.surface-control ];
}