mirror of
https://github.com/nix-community/home-manager
synced 2025-01-11 11:39:49 +01:00
parent
baea46c5ac
commit
3886f8db33
1 changed files with 5 additions and 2 deletions
|
@ -36,10 +36,13 @@ in {
|
||||||
systemd.user.services.pulseeffects = {
|
systemd.user.services.pulseeffects = {
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "Pulseeffects daemon";
|
Description = "Pulseeffects daemon";
|
||||||
Requires = [ "pulseaudio.service" "dbus.service" ];
|
Requires = [ "dbus.service" ];
|
||||||
After = [ "graphical-session.target" ];
|
After = [ "graphical-session-pre.target" ];
|
||||||
|
PartOf = [ "graphical-session.target" "pulseaudio.service" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
ExecStart =
|
ExecStart =
|
||||||
"${pkgs.pulseeffects}/bin/pulseeffects --gapplication-service ${presetOpts}";
|
"${pkgs.pulseeffects}/bin/pulseeffects --gapplication-service ${presetOpts}";
|
||||||
|
|
Loading…
Reference in a new issue