From 4b1c260c79f51bac21b197a82578962cb58e37ca Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Mon, 28 Apr 2025 17:14:42 +0100 Subject: [PATCH] hosts/odyssey: bump kernel and enable bluetooth --- hosts/odyssey/hardware-configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/odyssey/hardware-configuration.nix b/hosts/odyssey/hardware-configuration.nix index 332232f..2960d36 100644 --- a/hosts/odyssey/hardware-configuration.nix +++ b/hosts/odyssey/hardware-configuration.nix @@ -23,12 +23,16 @@ initrd.kernelModules = [ ]; initrd.supportedFilesystems = [ "zfs" ]; kernelModules = [ "kvm-amd" ]; - kernelPackages = pkgs.linuxPackages; + kernelPackages = pkgs.linuxPackages_6_12; supportedFilesystems = [ "ntfs" ]; binfmt.emulatedSystems = [ "aarch64-linux" ]; }; hardware = { + bluetooth = { + enable = true; + powerOnBoot = true; + }; cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; nvidia = { modesetting.enable = true;