diff --git a/docs/faq.adoc b/docs/faq.adoc
index 78a13a56..c5615fdb 100644
--- a/docs/faq.adoc
+++ b/docs/faq.adoc
@@ -100,7 +100,7 @@ error: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.
The solution on NixOS is to add
[source,nix]
-services.dbus.packages = with pkgs; [ gnome.dconf ];
+programs.dconf.enable = true;
to your system configuration.
diff --git a/modules/services/easyeffects.nix b/modules/services/easyeffects.nix
index bc87c209..001ff5d0 100644
--- a/modules/services/easyeffects.nix
+++ b/modules/services/easyeffects.nix
@@ -16,10 +16,9 @@ in {
Easyeffects daemon.
Note, it is necessary to add
- services.dbus.packages = with pkgs; [ gnome.dconf ];
+ programs.dconf.enable = true;
- to your system configuration for the daemon to work correctly
- '';
+ to your system configuration for the daemon to work correctly'';
preset = mkOption {
type = types.str;
diff --git a/modules/services/pulseeffects.nix b/modules/services/pulseeffects.nix
index b475e436..564bb067 100644
--- a/modules/services/pulseeffects.nix
+++ b/modules/services/pulseeffects.nix
@@ -12,7 +12,13 @@ in {
meta.maintainers = [ maintainers.jonringer ];
options.services.pulseeffects = {
- enable = mkEnableOption "Pulseeffects daemon";
+ enable = mkEnableOption ''
+ Pulseeffects daemon
+ Note, it is necessary to add
+
+ programs.dconf.enable = true;
+
+ to your system configuration for the daemon to work correctly'';
package = mkOption {
type = types.package;
@@ -42,9 +48,6 @@ in {
# "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 ];
- # Will need to add `services.dbus.packages = with pkgs; [ gnome.dconf ];`
- # to /etc/nixos/configuration.nix for daemon to work correctly
-
systemd.user.services.pulseeffects = {
Unit = {
Description = "Pulseeffects daemon";