NixFiles/maddie/openrgb.nix
2023-03-09 08:33:38 +00:00

13 lines
205 B
Nix

{ config, pkgs, ... }:
{
home.packages = with pkgs; [
openrgb
];
home.file.".xinitrc".text = ''
# Set RGB perhipherals to white
${pkgs.openrgb}/bin/openrgb -c white -m static &
'';
}