Compare commits

...

2 Commits

Author SHA1 Message Date
ebd0fc3875
Switch to 6.13 kernel
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m43s
2025-01-25 23:44:44 +01:00
bf3221e738
Add nix-cache01 for gunter 2025-01-25 23:44:44 +01:00

View File

@ -24,8 +24,8 @@
# Bootloader stuff
boot = {
# Kernel stuff
# kernelPackages = pkgs.linuxPackages_latest;
kernelPackages = lib.warn "Pinned to kernel 6.12 due to v4l2loopback trouble! PR 375833" pkgs.linuxPackages_6_12;
kernelPackages = pkgs.linuxPackages_latest;
# kernelPackages = lib.warn "Pinned to kernel 6.12 due to v4l2loopback trouble! PR 375833" pkgs.linuxPackages_6_12;
kernelParams = [
"quiet"
"splash"
@ -139,8 +139,19 @@
"root"
"torjus"
];
substituters = [ "https://cuda-maintainers.cachix.org" ];
trusted-substituters = [
"https://nix-cache.home.2rjus.net"
"https://cache.nixos.org"
"https://cuda-maintainers.cachix.org"
];
substituters = [
"https://nix-cache.home.2rjus.net"
"https://cache.nixos.org"
"https://cuda-maintainers.cachix.org"
];
trusted-public-keys = [
"nix-cache.home.2rjus.net-1:2kowZOG6pvhoK4AHVO3alBlvcghH20wchzoR0V86UWI="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"cuda-maintainers.cachix.org-1:0dq3bujKpuEPMCX6U4WylrUDZ9JyUG0VpVZa7CNfq5E="
];
};