Files
nix-config/hosts/common/optional/gnome.nix
2025-07-13 15:44:20 -03:00

30 lines
703 B
Nix

{pkgs, ...}: {
services.desktopManager.gnome.enable = true;
#environment.sessionVariables.GTK_USE_PORTAL = "1";
environment.sessionVariables.NIXOS_OZONE_WL = "1";
environment.gnome.excludePackages = with pkgs; [
atomix # puzzle game
cheese # webcam tool
epiphany # web browser
evince # document viewer
geary # email reader
gedit # text editor
gnome-characters
gnome-shell-extensions
gnome-music
gnome-photos
gnome-terminal
gnome-tour
hitori # sudoku game
iagno # go game
tali # poker game
totem # video player
];
environment.systemPackages = with pkgs; [
gnomeExtensions.appindicator
gsettings-desktop-schemas
];
}