Make all gnomes minimal

This commit is contained in:
Sandro - 2023-04-24 23:02:35 +02:00
parent 5d513cba75
commit d2fd11dccb
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 34 additions and 39 deletions

View File

@ -37,8 +37,19 @@
documentation.nixos.enable = false;
environment = {
gnome.excludePackages = with pkgs; [
gnome.excludePackages = with pkgs; with gnome; [
baobab
cheese
epiphany # we are using firefox or chromium and requires second webkitgtk
gnome-calendar
gnome-contacts
gnome-maps
gnome-music
gnome-photos
gnome-weather
orca
simple-scan
totem
yelp # less webkitgtk's
];
noXlibs = !lib.any (host: host == config.networking.hostName) [ "dacbert" "glotzbert" "rpi-netboot" ];

View File

@ -133,44 +133,28 @@ in
}
];
environment = {
gnome.excludePackages = with pkgs.gnome; [
baobab
cheese
epiphany
gnome-calendar
gnome-contacts
gnome-maps
gnome-music
pkgs.gnome-photos
gnome-weather
simple-scan
totem
yelp
];
systemPackages = with pkgs; [
libraspberrypi
raspberrypi-eeprom
vim
wget
libva-utils
mpv
vlc
ffmpeg
yt-dlp
ncpamixer
pulseaudio # required for pactl
chromium
firefox
pavucontrol
glxinfo
# tracer-game
bevy_julia
bevy_mandelbrot
allcolors
streamAudioToOwncast
];
};
environment.systemPackages = with pkgs; [
libraspberrypi
raspberrypi-eeprom
vim
wget
libva-utils
mpv
vlc
ffmpeg
yt-dlp
ncpamixer
pulseaudio # required for pactl
chromium
firefox
pavucontrol
glxinfo
# tracer-game
bevy_julia
bevy_mandelbrot
allcolors
streamAudioToOwncast
];
security.sudo = {
enable = true;