Gnome improvements (remove bloatware, change apps)

This commit is contained in:
Henry Hiles 2025-01-21 16:36:48 +00:00
parent 850d25a9ee
commit d427dbc4d6
4 changed files with 189 additions and 75 deletions

View file

@ -1,15 +1,40 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs.gnomeExtensions; [
caffeine
open-bar
pop-shell
appindicator
blur-my-shell
just-perfection
burn-my-windows
fullscreen-avoider
compiz-windows-effect
rounded-window-corners-reborn
brightness-control-using-ddcutil
];
programs.nautilus-open-any-terminal = {
enable = true;
terminal = "ptyxis";
};
environment = {
systemPackages = with pkgs.gnomeExtensions; [
caffeine
open-bar
pop-shell
appindicator
blur-my-shell
just-perfection
burn-my-windows
fullscreen-avoider
compiz-windows-effect
rounded-window-corners-reborn
brightness-control-using-ddcutil
];
gnome.excludePackages = with pkgs; [
yelp
totem
xterm
evince
snapshot
epiphany
gnome-logs
gnome-tour
gnome-music
gnome-console
gnome-calendar
gnome-software
gnome-characters
gnome-text-editor
gnome-system-monitor
];
};
}