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 = { services = {
thermald.enable = true; thermald.enable = true;
}; hardware.openrgb = {
}; enable = true;
services.hardware.openrgb = { package = pkgs.openrgb-with-all-plugins;
enable = true; motherboard = "amd";
package = pkgs.openrgb-with-all-plugins; server = {
motherboard = "amd"; port = 6742;
server = { # autoStart = true;
port = 6742; };
# autoStart = true; };
}; };
}; };
} }