From 55a85024bc2a52743fe7a071ba17dacee41719e9 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Sat, 2 Jan 2021 20:50:12 +0100 Subject: [PATCH] blackadder: pin linux 5.9, enable bluetooth --- physical/3950x.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/physical/3950x.nix b/physical/3950x.nix index e44e2c4..31ab934 100644 --- a/physical/3950x.nix +++ b/physical/3950x.nix @@ -12,10 +12,11 @@ in boot.loader.efi.canTouchEfiVariables = true; boot.supportedFilesystems = [ "zfs" ]; boot.kernelModules = [ "nct6775" ]; - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_5_9; networking.hostId = "c7736638"; services.zfs.autoScrub.enable = true; services.zfs.trim.enable = true; + hardware.bluetooth.enable = true; networking.useDHCP = false; networking.interfaces.enp9s0.useDHCP = true;