From 2eeb91a08b3365e6b768fd36c707d3aa49bf4702 Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Fri, 21 Mar 2025 22:02:31 +0100 Subject: [PATCH] perso-desktop: Add openrgb --- hosts/perso-desktop/configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/hosts/perso-desktop/configuration.nix b/hosts/perso-desktop/configuration.nix index 19e6dd6..b089d20 100644 --- a/hosts/perso-desktop/configuration.nix +++ b/hosts/perso-desktop/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ lib, ... }: +{ pkgs, lib, ... }: { imports = @@ -52,4 +52,9 @@ printing.enable = true; }; }; + + services.hardware.openrgb = { + enable = true; + package = pkgs.openrgb-with-all-plugins; + }; }