Usbipd service

This commit is contained in:
Curt Spark 2024-03-22 16:52:12 +00:00
parent 1a2d5cedc0
commit 3363a9672b
1 changed files with 13 additions and 0 deletions

View File

@ -14,6 +14,19 @@
inetutils
linuxPackages.usbip
];
systemd.services.usbipd = {
description = "Custom service that runs usbipd";
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ linuxPackages.usbip ];
enable = true;
serviceConfig = {
User = "root";
Group = "root";
};
script = "
usbipd
";
};
# Set your time zone.
time.timeZone = "Europe/London";