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,9 +27,7 @@ in {
}; };
services = { services = {
thermald.enable = true; thermald.enable = true;
}; hardware.openrgb = {
};
services.hardware.openrgb = {
enable = true; enable = true;
package = pkgs.openrgb-with-all-plugins; package = pkgs.openrgb-with-all-plugins;
motherboard = "amd"; motherboard = "amd";
@ -38,4 +36,6 @@ in {
# autoStart = true; # autoStart = true;
}; };
}; };
};
};
} }