surface: add iptsd

This commit is contained in:
Tom Bereknyei 2021-05-27 18:41:26 +00:00
parent c4399b921f
commit 2bc0b595b5
1 changed files with 5 additions and 0 deletions

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" ];
};
}