Skip to content

Commit

Permalink
Update namespace of gnome packages whcih moved to toplevel
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Nov 16, 2024
1 parent 3839b61 commit be128e3
Showing 1 changed file with 13 additions and 16 deletions.
29 changes: 13 additions & 16 deletions nixos/desktop/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
desktopManager.gnome = {
enable = true;
# https://github.com/NixOS/nixpkgs/issues/114514
extraGSettingsOverridePackages = [ pkgs.gnome.mutter ];
extraGSettingsOverridePackages = [ pkgs.mutter ];
};

# Configure keymap in X11
Expand All @@ -63,7 +63,7 @@
};

services.udev.packages = with pkgs; [
gnome.gnome-settings-daemon
gnome-settings-daemon
sane-airscan
];

Expand All @@ -83,18 +83,15 @@
gnome-terminal.enable = true;
};

environment.gnome.excludePackages =
(with pkgs; [
gnome-tour
gnome-connections
])
++ (with pkgs.gnome; [
epiphany # web browser
geary # email reader
evince # document viewer
gnome-calendar
gnome-music # does not support flac by defaults
]);
environment.gnome.excludePackages = with pkgs; [
gnome-tour
gnome-connections
epiphany # web browser
geary # email reader
evince # document viewer
gnome-calendar
gnome-music # does not support flac by defaults
];

# Recommended to be uninstalled by gnupg. I prefer this way, even though disabling gpg-agent ssh integrations.
# https://wiki.gnupg.org/GnomeKeyring
Expand Down Expand Up @@ -164,8 +161,8 @@

calibre

gnome.dconf-editor
gnome.gnome-boxes
dconf-editor
gnome-boxes

# https://github.com/NixOS/nixpkgs/issues/174353 - Super + / runs launcher by default
pop-launcher
Expand Down

0 comments on commit be128e3

Please sign in to comment.