feat(gnome): add tweaks and appindicator

This commit is contained in:
uku 2024-06-13 12:01:07 +02:00
parent 2d875dce63
commit cc9c169acc
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o

View file

@ -4,19 +4,24 @@
displayManager.defaultSession = "gnome"; displayManager.defaultSession = "gnome";
}; };
environment.gnome.excludePackages = environment = with pkgs; {
(with pkgs; [ systemPackages = [
gnome-tour gnome.gnome-tweaks
]) gnomeExtensions.appindicator
++ (with pkgs.gnome; [ ];
cheese # webcam tool
gnome-terminal gnome.excludePackages =
epiphany # web browser [gnome-tour]
geary # email reader ++ (with pkgs.gnome; [
totem # video player cheese # webcam tool
tali # poker game gnome-terminal
iagno # go game epiphany # web browser
hitori # sudoku game geary # email reader
atomix # puzzle game totem # video player
]); tali # poker game
iagno # go game
hitori # sudoku game
atomix # puzzle game
]);
};
} }