Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pulseeffects: add option to specify package #1825

Merged
merged 1 commit into from
Feb 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions modules/services/pulseeffects.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ in {
options.services.pulseeffects = {
enable = mkEnableOption "Pulseeffects daemon";

package = mkOption {
type = types.package;
default = pkgs.pulseeffects;
defaultText = literalExample "pkgs.pulseeffects";
description = "Pulseeffects package to use.";
example = literalExample "pkgs.pulseeffects-pw";
};

preset = mkOption {
type = types.str;
default = "";
Expand All @@ -28,7 +36,7 @@ in {
# running pulseeffects will just attach itself to gapplication service
# 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"
home.packages = [ pkgs.pulseeffects pkgs.at-spi2-core ];
home.packages = [ cfg.package pkgs.at-spi2-core ];

# Will need to add `services.dbus.packages = with pkgs; [ gnome3.dconf ];`
# to /etc/nixos/configuration.nix for daemon to work correctly
Expand All @@ -45,8 +53,8 @@ in {

Service = {
ExecStart =
"${pkgs.pulseeffects}/bin/pulseeffects --gapplication-service ${presetOpts}";
ExecStop = "${pkgs.pulseeffects}/bin/pulseeffects --quit";
"${cfg.package}/bin/pulseeffects --gapplication-service ${presetOpts}";
ExecStop = "${cfg.package}/bin/pulseeffects --quit";
Restart = "on-failure";
RestartSec = 5;
};
Expand Down