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
commit d4ef27b668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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" ];
};
}