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