Compare commits

..

4 commits

Author SHA1 Message Date
Chris (wolcen) Thompson
ccfbdfcb6a Adjust settings for Ollama - try vulkan
There is also an ollama-rocm, should this fail
2025-12-12 12:55:40 -05:00
Chris (wolcen) Thompson
bafb941c87 Re-enable various programs that were previously failing to install/build 2025-12-12 12:55:13 -05:00
Chris (wolcen) Thompson
822d173f43 Update flake.lock 2025-12-12 12:54:55 -05:00
Chris (wolcen) Thompson
e219c02b1c Update flake.lock 2025-12-12 11:34:36 -05:00
2 changed files with 12 additions and 11 deletions

12
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1763389499, "lastModified": 1765480374,
"narHash": "sha256-GuG3PW8U41f8XqROreZQaUvrcjQt+Gh92g16X7zBUck=", "narHash": "sha256-HlbvQAqLx7WqZFFQZ8nu5UUJAVlXiV/kqKbyueA8srw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "7538d965352d3bfd4c380f5b3aa618bc839a84b4", "rev": "39cb677ed9e908e90478aa9fe5f3383dfc1a63f3",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1763283776, "lastModified": 1765186076,
"narHash": "sha256-Y7TDFPK4GlqrKrivOcsHG8xSGqQx3A6c+i7novT85Uk=", "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "50a96edd8d0db6cc8db57dab6bb6d6ee1f3dc49a", "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -274,7 +274,7 @@ in
amdgpu_top # top-like monitor for AMD GPUs amdgpu_top # top-like monitor for AMD GPUs
direnv # autoload .envrc files direnv # autoload .envrc files
zoxide # directory navigator (z) zoxide # directory navigator (z)
# nextcloud-client # next cloud UI (also just fialed to build. Gah... damn KDE lib issues nextcloud-client # next cloud UI (also just fialed to build. Gah... damn KDE lib issues
file # show file types file # show file types
tldr # cli command summary tldr # cli command summary
stress # system workload generator stress # system workload generator
@ -283,7 +283,7 @@ in
niv # dependency cli for nix-shell niv # dependency cli for nix-shell
openrgb-with-all-plugins # colors hardware control openrgb-with-all-plugins # colors hardware control
just # command runner like make just # command runner like make
#ansible # configuration management system/automation tool ansible # configuration management system/automation tool
kdePackages.kcachegrind # analyze xdebug output kdePackages.kcachegrind # analyze xdebug output
kdePackages.filelight # disk space visualizer kdePackages.filelight # disk space visualizer
#kdePackages.kwallet # added in order to use Signal, since it tied itself to my first desktop #kdePackages.kwallet # added in order to use Signal, since it tied itself to my first desktop
@ -303,10 +303,10 @@ in
pigz # muti-treaded replacement for gzip pigz # muti-treaded replacement for gzip
unzip # old standard zip handler unzip # old standard zip handler
# rpi-imager # rasbperry pi os burner util (1.9.6 failed build) # rpi-imager # rasbperry pi os burner util (1.9.6 failed build)
# screenkey # broadcast key presses screenkey # broadcast key presses
superfile # cli file manager superfile # cli file manager
mpv # movie player mpv # movie player
#obs-studio # open broadcast studio obs-studio # open broadcast studio
protonup-qt # proton version installer protonup-qt # proton version installer
heroic # game launcher (GOG/Epic/Prime) heroic # game launcher (GOG/Epic/Prime)
lutris # game launcher (EA/Humble/Ubi++) lutris # game launcher (EA/Humble/Ubi++)
@ -421,7 +421,8 @@ in
services.ollama = { services.ollama = {
enable = true; enable = true;
acceleration = "rocm"; # hipblaslt not compiling at present #acceleration = "rocm"; # hipblaslt not compiling at present - build reports this no longer takes effect
package = pkgs.ollama-vulkan;
environmentVariables = { environmentVariables = {
HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore HCC_AMDGPU_TARGET = "gfx1031"; # used to be necessary, but doesn't seem to anymore
OLLAMA_LOAD_TIMEOUT = "2m"; # Reduce load timeout (from 5 min)...if it's that big, forget it. OLLAMA_LOAD_TIMEOUT = "2m"; # Reduce load timeout (from 5 min)...if it's that big, forget it.