All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fettuccine: avoid 6.15.4 kernel

Otherwise Ghostty perf goes kaputt

+5 -1
+5 -1
systems/fettuccine/default.nix
··· 20 20 boot = { 21 21 # Disable Nvidia's HDMI audio 22 22 blacklistedKernelModules = [ "snd_hda_codec_hdmi" ]; 23 - kernelPackages = pkgs.linuxPackages_xanmod_latest; 23 + 24 + # FIXME: switch back to latest xanmod after 6.15.5 25 + kernelPackages = pkgs.linuxPackages_xanmod_stable; 24 26 }; 25 27 26 28 # Enable building and testing aarch64 packages for Nixpkgs dev ··· 63 65 "https://mirrors.tuna.tsinghua.edu.cn" 64 66 # "https://mirror.sjtu.edu.cn" # FIXME: buggy? 65 67 ]; 68 + 69 + environment.sessionVariables.all_proxy = "http://127.0.0.1:2080"; 66 70 }; 67 71 }