From db1f5e85c4d2385ae9d4c9eb7349e6a6ccd6a6ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Fri, 19 Jan 2024 18:37:36 +0100 Subject: [PATCH] fix(libra): Switch to kernel 6.6 --- machines/libra/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/machines/libra/default.nix b/machines/libra/default.nix index be93e98..13361da 100644 --- a/machines/libra/default.nix +++ b/machines/libra/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page, on # https://search.nixos.org/options and in the NixOS manual (`nixos-help`). -{ nixos-hardware }: { +{ nixos-hardware }: { pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix @@ -19,6 +19,8 @@ "/nix".options = [ "compress=zstd" "noatime" ]; }; + boot.kernelPackages = pkgs.linuxPackages_6_6; + hardware.opengl.enable = true; hardware.bluetooth.enable = true;