Merge pull request #265 from tomberek/surface_iptsd

surface: add iptsd
This commit is contained in:
Jörg Thalheim
2021-06-13 09:36:14 +02:00
committed by GitHub

View File

@@ -5,4 +5,9 @@
environment.systemPackages = with pkgs; [ surface-control ];
users.groups.surface-control = { };
services.udev.packages = [ pkgs.surface-control ];
systemd.services.iptsd = {
description = "IPTSD";
script = "${pkgs.iptsd}/bin/iptsd";
wantedBy = [ "multi-user.target" ];
};
}