Replace references to pkgs.gnome3 by pkgs.gnome

This commit is contained in:
Robert Helgesson 2021-05-30 22:47:03 +02:00
parent c7e79b5337
commit d3cdabb5c9
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
7 changed files with 7 additions and 7 deletions

View file

@ -25,7 +25,7 @@ let
options = {
package = mkOption {
type = types.package;
example = literalExample "pkgs.gnome3.adwaita-icon-theme";
example = literalExample "pkgs.gnome.adwaita-icon-theme";
description = "Package providing the theme.";
};

View file

@ -36,7 +36,7 @@ in {
args = concatStringsSep " " ([ "--start" "--foreground" ]
++ optional (cfg.components != [ ])
("--components=" + concatStringsSep "," cfg.components));
in "${pkgs.gnome3.gnome-keyring}/bin/gnome-keyring-daemon ${args}";
in "${pkgs.gnome.gnome-keyring}/bin/gnome-keyring-daemon ${args}";
Restart = "on-abort";
};

View file

@ -38,7 +38,7 @@ 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; [ gnome3.dconf ];`
# 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 = {