easyeffects: add package option (#3568)
This commit is contained in:
parent
3ecd5305a4
commit
1786883425
|
@ -20,6 +20,13 @@ in {
|
||||||
</programlisting>
|
</programlisting>
|
||||||
to your system configuration for the daemon to work correctly'';
|
to your system configuration for the daemon to work correctly'';
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
default = pkgs.easyeffects;
|
||||||
|
defaultText = literalExpression "pkgs.easyeffects";
|
||||||
|
description = "The <literal>easyeffects</literal> package to use.";
|
||||||
|
};
|
||||||
|
|
||||||
preset = mkOption {
|
preset = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "";
|
default = "";
|
||||||
|
@ -38,7 +45,7 @@ in {
|
||||||
# running easyeffects will just attach itself to gapplication service
|
# running easyeffects will just attach itself to gapplication service
|
||||||
# at-spi2-core is to minimize journalctl noise of:
|
# at-spi2-core is to minimize journalctl noise of:
|
||||||
# "AT-SPI: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files"
|
# "AT-SPI: Error retrieving accessibility bus address: org.freedesktop.DBus.Error.ServiceUnknown: The name org.a11y.Bus was not provided by any .service files"
|
||||||
home.packages = with pkgs; [ easyeffects at-spi2-core ];
|
home.packages = with pkgs; [ cfg.package at-spi2-core ];
|
||||||
|
|
||||||
systemd.user.services.easyeffects = {
|
systemd.user.services.easyeffects = {
|
||||||
Unit = {
|
Unit = {
|
||||||
|
@ -52,8 +59,8 @@ in {
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
ExecStart =
|
ExecStart =
|
||||||
"${pkgs.easyeffects}/bin/easyeffects --gapplication-service ${presetOpts}";
|
"${cfg.package}/bin/easyeffects --gapplication-service ${presetOpts}";
|
||||||
ExecStop = "${pkgs.easyeffects}/bin/easyeffects --quit";
|
ExecStop = "${cfg.package}/bin/easyeffects --quit";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
RestartSec = 5;
|
RestartSec = 5;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue