1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-22 22:48:31 +02:00

faq: add entry about missing ca.desrt.dconf

This commit is contained in:
Robert Helgesson 2019-03-17 15:29:32 +01:00
parent 267afa5a3b
commit fd2bc150d8
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.
[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.