2024-12-05 12:52:17 -08:00
|
|
|
{ pkgs, ... }: {
|
2024-12-12 00:00:08 -08:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
goxlr-utility
|
|
|
|
];
|
2024-12-05 12:52:17 -08:00
|
|
|
systemd.user.services = {
|
|
|
|
goxlr-utility = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Unofficial GoXLR App replacement for Linux, Windows and MacOS";
|
|
|
|
Documentation = [ "https://github.com/GoXLR-on-Linux/goxlr-utility" ];
|
|
|
|
};
|
|
|
|
Service = {
|
|
|
|
Restart = "always";
|
|
|
|
RestartSec = 30;
|
|
|
|
ExecStart = "${pkgs.goxlr-utility}/bin/goxlr-daemon";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|