perso-desktop: Add openrgb
All checks were successful
check / check (push) Successful in 36s

This commit is contained in:
Florian RICHER 2025-03-21 22:02:31 +01:00
parent df5c6bfef9
commit 2eeb91a08b
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77

View file

@ -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;
};
}