fix: move openrgb block into config blocks so that nix likes me back

This commit is contained in:
Ahwx 2025-02-13 12:14:14 +01:00
parent b386c6655a
commit 9e60b87a78

View file

@ -27,15 +27,15 @@ in {
};
services = {
thermald.enable = true;
};
};
services.hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
motherboard = "amd";
server = {
port = 6742;
# autoStart = true;
hardware.openrgb = {
enable = true;
package = pkgs.openrgb-with-all-plugins;
motherboard = "amd";
server = {
port = 6742;
# autoStart = true;
};
};
};
};
}