USBIP Initial server configuration

This commit is contained in:
Curt Spark 2024-03-22 15:41:09 +00:00
parent 141316fa11
commit 71792f0f4b
1 changed files with 7 additions and 0 deletions

View File

@ -7,6 +7,13 @@
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# For USBIP Server configuration, to share USBKeys etc with my server (Which is the client)
boot.extraModulePackages = with config.boot.kernelPackages; [ usbip ];
boot.kernelModules = [ "usbip_host" ];
environment.systemPackages = with pkgs; [
linuxPackages.usbip
];
# Set your time zone.
time.timeZone = "Europe/London";