2020-04-21 22:12:45 +02:00
{ config , lib , pkgs , . . . }:
with lib ;
let
cfg = config . services . pulseeffects ;
presetOpts = optionalString ( cfg . preset != " " ) " - - l o a d - p r e s e t ${ cfg . preset } " ;
in {
meta . maintainers = [ maintainers . jonringer ] ;
options . services . pulseeffects = {
enable = mkEnableOption " P u l s e e f f e c t s d a e m o n " ;
preset = mkOption {
type = types . str ;
default = " " ;
description = ''
Which preset to use when starting pulseeffects .
Will likely need to launch pulseeffects to initially create preset .
'' ;
} ;
} ;
config = mkIf cfg . enable {
# 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 ] ;
# Will need to add `services.dbus.packages = with pkgs; [ gnome3.dconf ];`
# to /etc/nixos/configuration.nix for daemon to work correctly
systemd . user . services . pulseeffects = {
Unit = {
Description = " P u l s e e f f e c t s d a e m o n " ;
2020-08-13 21:34:25 +02:00
Requires = [ " d b u s . s e r v i c e " ] ;
After = [ " g r a p h i c a l - s e s s i o n - p r e . t a r g e t " ] ;
PartOf = [ " g r a p h i c a l - s e s s i o n . t a r g e t " " p u l s e a u d i o . s e r v i c e " ] ;
2020-04-21 22:12:45 +02:00
} ;
2020-08-13 21:34:25 +02:00
Install = { WantedBy = [ " g r a p h i c a l - s e s s i o n . t a r g e t " ] ; } ;
2020-04-21 22:12:45 +02:00
Service = {
ExecStart =
" ${ pkgs . pulseeffects } / b i n / p u l s e e f f e c t s - - g a p p l i c a t i o n - s e r v i c e ${ presetOpts } " ;
ExecStop = " ${ pkgs . pulseeffects } / b i n / p u l s e e f f e c t s - - q u i t " ;
Restart = " o n - f a i l u r e " ;
RestartSec = 5 ;
} ;
} ;
} ;
}