1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/modules/services/pulseeffects.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

74 lines
1.9 KiB
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.pulseeffects;
presetOpts = lib.optionalString (cfg.preset != "") "--load-preset ${cfg.preset}";
in
{
meta.maintainers = [ lib.hm.maintainers.jonringer ];
options.services.pulseeffects = {
enable = lib.mkEnableOption ''
Pulseeffects daemon
Note, it is necessary to add
```nix
programs.dconf.enable = true;
```
to your system configuration for the daemon to work correctly'';
package = lib.mkPackageOption pkgs "pulseeffects-legacy" { };
preset = lib.mkOption {
type = lib.types.str;
default = "";
description = ''
Which preset to use when starting pulseeffects.
Will likely need to launch pulseeffects to initially create preset.
'';
};
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.pulseeffects" pkgs lib.platforms.linux)
];
# 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 = [
cfg.package
pkgs.at-spi2-core
];
systemd.user.services.pulseeffects = {
Unit = {
Description = "Pulseeffects daemon";
Requires = [ "dbus.service" ];
After = [ "graphical-session.target" ];
PartOf = [
"graphical-session.target"
"pulseaudio.service"
];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${cfg.package}/bin/pulseeffects --gapplication-service ${presetOpts}";
ExecStop = "${cfg.package}/bin/pulseeffects --quit";
Restart = "on-failure";
RestartSec = 5;
};
};
};
}