From 7c3550e302a5cb5e554e6f5f114b792f3e1d86be Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Sat, 14 May 2022 11:47:25 +0200 Subject: [PATCH] 3950x: add openrgb --- nixos/physical/3950x.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/physical/3950x.nix b/nixos/physical/3950x.nix index 415e81a..9bdcbd0 100644 --- a/nixos/physical/3950x.nix +++ b/nixos/physical/3950x.nix @@ -10,7 +10,7 @@ in { boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.supportedFilesystems = [ "zfs" ]; - boot.kernelModules = [ "nct6775" ]; + boot.kernelModules = [ "nct6775" "i2c-dev" "i2c-piix4" ]; boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages; networking.hostId = "c7736638"; services.zfs.autoScrub.enable = true; @@ -35,4 +35,5 @@ in { "pcie_ports=native" "pci=assign-busses,hpbussize=0x33,realloc" ]; + environment.systemPackages = [ pkgs.openrgb ]; }