From b77c36764a79b56e640d86b034b9d042fbf7ab00 Mon Sep 17 00:00:00 2001 From: TheCrazyInsanity Date: Sat, 13 Dec 2025 11:18:59 -0500 Subject: [PATCH] vllm can go suck a big fat cock --- machines/homepc/configuration.nix | 5 +++-- machines/homepc/hardware-configuration.nix | 6 ++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/machines/homepc/configuration.nix b/machines/homepc/configuration.nix index 5d83084..dfd9971 100644 --- a/machines/homepc/configuration.nix +++ b/machines/homepc/configuration.nix @@ -34,8 +34,9 @@ # host = "[::]"; # }; - environment.systemPackages = [ - pkgs.ollama-cuda + # This is here because I don't have another computer that could run local AI, and regardless the packages would be different on every one. + environment.systemPackages = with pkgs; [ + ollama-cuda ]; # Set your time zone. diff --git a/machines/homepc/hardware-configuration.nix b/machines/homepc/hardware-configuration.nix index d68e315..ddf7fa1 100644 --- a/machines/homepc/hardware-configuration.nix +++ b/machines/homepc/hardware-configuration.nix @@ -75,5 +75,11 @@ package = config.boot.kernelPackages.nvidiaPackages.stable; }; + nix.settings = { + substituters = [ "https://cache.nixos-cuda.org" ]; + trusted-public-keys = [ "cache.nixos-cuda.org:74DUi4Ye579gUqzH4ziL9IyiJBlDpMRn9MBN8oNan9M=" ]; + }; + + system.stateVersion = "24.11"; # No touchy }