diff --git a/index.html b/index.html index 9bff89b8d..adf372699 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
?+
ca.desrt.dconf
?This manual will eventually describes how to install, use, and extend Home Manager.
@@ -289,7 +289,7 @@ error: build of ‘/nix/store/b37x3s7pzxbasfqhaca5dqbf3pjjw0ip-user-environment. imports = [ ./common.nix ]; # Various options that are specific for this machine/user. -}
while the common.nix
file contains configuration shared across the two logins. Of course, instead of just a single common.nix
file you can have multiple ones, even one per program or service.
You can get some inspiration from the Post your home-manager home.nix file! Reddit thread.
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.
If you are using a stable version of Nixpkgs but would like to install some particular packages from Nixpkgs unstable – or some other channel – then you can import the unstable Nixpkgs and refer to its packages within your configuration. Something like
{ pkgs, config, ... }: +}
while the common.nix
file contains configuration shared across the two logins. Of course, instead of just a single common.nix
file you can have multiple ones, even one per program or service.
You can get some inspiration from the Post your home-manager home.nix file! Reddit thread.
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; [ gnome.dconf ];
to your system configuration.
If you are using a stable version of Nixpkgs but would like to install some particular packages from Nixpkgs unstable – or some other channel – then you can import the unstable Nixpkgs and refer to its packages within your configuration. Something like
{ pkgs, config, ... }: let diff --git a/options.html b/options.html index 19cd1e4a1..a1f216572 100644 --- a/options.html +++ b/options.html @@ -922,7 +922,7 @@ to your profile. Ifnull
then the theme is assumed to already be available in your profile.Type: null or package
Default:
null -
Example:
pkgs.gnome3.gnome_themes_standardDeclared by:
+ Example: pkgs.gnome.gnome_themes_standard Declared by:
gtk.iconTheme.name The name of the theme within the package. Type: string Example: Type: null or package Default: Example: pkgs.gnome3.gnome_themes_standard Declared by:
|