flake/programs/gnome.nix

29 lines
579 B
Nix
Raw Normal View History

2024-06-06 11:51:03 +02:00
{pkgs, ...}: {
services = {
xserver.desktopManager.gnome.enable = true;
displayManager.defaultSession = "gnome";
};
environment = {
gnome.excludePackages =
(with pkgs; [
gnome-tour
])
++ (with pkgs.gnome; [
cheese # webcam tool
gnome-terminal
epiphany # web browser
geary # email reader
totem # video player
tali # poker game
iagno # go game
hitori # sudoku game
atomix # puzzle game
]);
sessionVariables = {
NIXOS_OZONE_WL = "1";
};
};
}