Your one-stop-cake-shop for everything Freshly Baked has to offer

feat(pm/shorthair): move to kernel 6.18

I've experienced issues with GPU page faults which are supposedly fixed
in later kernels (nixos stable currently runs 6.12). ROCm can also cause
issues so I've removed ollama to turn it off.

authored by thecoded.prof and committed by tangled.org 1aa0d3d0 e2fd17b5

+2 -14
+2
packetmix/systems/shorthair/hardware.nix
··· 6 6 config, 7 7 lib, 8 8 modulesPath, 9 + pkgs, 9 10 ... 10 11 }: 11 12 ··· 23 24 "ext4" 24 25 ]; 25 26 boot.initrd.kernelModules = [ ]; 27 + boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_18; 26 28 boot.kernelModules = [ 27 29 "kvm-amd" 28 30 "amdgpu"
-14
packetmix/systems/shorthair/ollama.nix
··· 1 - # SPDX-FileCopyrightText: 2025 FreshlyBakedCake 2 - # 3 - # SPDX-License-Identifier: MIT 4 - 5 - { 6 - services.ollama = { 7 - enable = true; 8 - acceleration = "rocm"; 9 - }; 10 - services.nextjs-ollama-llm-ui = { 11 - enable = true; 12 - port = 1144; 13 - }; 14 - }