30 lines
703 B
Nix
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
|
|
];
|
|
}
|