From 71792f0f4b391ccf2b93e28f2bf2a88126f1ab7e Mon Sep 17 00:00:00 2001 From: cspark Date: Fri, 22 Mar 2024 15:41:09 +0000 Subject: [PATCH] USBIP Initial server configuration --- global.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/global.nix b/global.nix index 99d6f4bd..9589bafd 100644 --- a/global.nix +++ b/global.nix @@ -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";