faq: add entry about missing ca.desrt.dconf

(cherry picked from commit fd2bc150d8)
This commit is contained in:
Robert Helgesson 2019-03-17 15:29:32 +01:00
parent 5d5bc3dc5a
commit 9901509ef8
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89

15
FAQ.md
View file

@ -104,3 +104,18 @@ You can get some inspiration from the [Post your home-manager home.nix
file!][1] Reddit thread. file!][1] Reddit thread.
[1]: https://www.reddit.com/r/NixOS/comments/9bb9h9/post_your_homemanager_homenix_file/ [1]: https://www.reddit.com/r/NixOS/comments/9bb9h9/post_your_homemanager_homenix_file/
Why do I get an error message about `ca.desrt.dconf`?
-----------------------------------------------------
You are most likely trying to configure the GTK or Gnome Terminal but
the DBus session is not aware of the dconf service. The full error you
might get is
error: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
The solution on NixOS is to add
services.dbus.packages = with pkgs; [ gnome3.dconf ];
to your system configuration.