From 71c395ab6946507902e3a833941d65ea4bfd383e Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Sun, 1 Aug 2021 13:24:44 +0200 Subject: [PATCH] boreal: pin kernel to 5.12 nvidia driver is broken on 5.13: https://github.com/NixOS/nixpkgs/issues/129233 Fixed on unstable only --- hosts/boreal/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/boreal/default.nix b/hosts/boreal/default.nix index c59aceb..f34bf27 100644 --- a/hosts/boreal/default.nix +++ b/hosts/boreal/default.nix @@ -14,7 +14,7 @@ in ./home.nix ]; - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_5_12; # Use the systemd-boot EFI boot loader. boot.loader.systemd-boot.enable = true;