mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
44 lines
764 B
Nix
44 lines
764 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
{
|
|
environment = {
|
|
gnome.excludePackages = with pkgs; [
|
|
decibels
|
|
epiphany
|
|
geary
|
|
gnome-connections
|
|
gnome-contacts
|
|
gnome-logs
|
|
gnome-maps
|
|
gnome-music
|
|
gnome-software
|
|
gnome-system-monitor
|
|
snapshot
|
|
totem
|
|
yelp
|
|
];
|
|
|
|
systemPackages = with pkgs.gnomeExtensions; [
|
|
# thanatophobia
|
|
alphabetical-app-grid
|
|
appindicator
|
|
blur-my-shell
|
|
control-monitor-brightness-and-volume-with-ddcutil
|
|
bubblemail
|
|
color-picker
|
|
dash-to-dock
|
|
# Not for G49 yet
|
|
# favorites-to-applications-grid
|
|
middle-click-to-close-in-overview
|
|
undecorate
|
|
user-themes
|
|
window-is-ready-remover
|
|
];
|
|
};
|
|
}
|