From fc7790bc158473ae8cf6f9b13ece5d7e7c6b8ede Mon Sep 17 00:00:00 2001 From: Wroclaw Date: Thu, 7 Nov 2024 19:35:52 +0100 Subject: [PATCH] hosts/main: enable i2c and openrgb for rgb control --- hosts/main/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/main/default.nix b/hosts/main/default.nix index 4da73cf..9514030 100644 --- a/hosts/main/default.nix +++ b/hosts/main/default.nix @@ -71,6 +71,10 @@ services.printing.startWhenNeeded = false; + # rgb control for razer, graphics card and motherboard + hardware.i2c.enable = true; + services.hardware.openrgb.enable = true; + system.stateVersion = "23.05"; }; }