Update to NixOS 24.11

This commit is contained in:
Pim Kunis 2024-11-30 13:14:46 +01:00
parent c0a75e8e0e
commit a90c75931b
12 changed files with 140 additions and 99 deletions

View file

@ -21,7 +21,7 @@ in {
environment = {
systemPackages =
[
pkgs.gnome.gnome-shell-extensions
pkgs.gnome-shell-extensions
]
++ (with pkgs.gnomeExtensions; [
pop-shell
@ -31,27 +31,24 @@ in {
])
++ lib.optional config.services.tailscale.enable pkgs.gnomeExtensions.tailscale-status;
gnome.excludePackages =
(with pkgs; [
epiphany
gnome-connections
gnome-console
gnome-tour
])
++ (with pkgs.gnome; [
geary
gnome-calendar
gnome-clocks
gnome-contacts
gnome-font-viewer
gnome-logs
gnome-maps
gnome-music
seahorse
totem
yelp
gnome-weather
]);
gnome.excludePackages = with pkgs; [
epiphany
gnome-connections
gnome-console
gnome-tour
geary
gnome-calendar
gnome-clocks
gnome-contacts
gnome-font-viewer
gnome-logs
gnome-maps
gnome-music
seahorse
totem
yelp
gnome-weather
];
};
};
}