mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
26 lines
571 B
Nix
26 lines
571 B
Nix
{pkgs, ...}: {
|
|
environment.gnome.excludePackages =
|
|
(with pkgs; [
|
|
gnome-photos
|
|
gnome-tour
|
|
])
|
|
++ (with pkgs.gnome; [
|
|
cheese # webcam tool
|
|
gnome-music
|
|
gedit # text editor
|
|
epiphany # web browser
|
|
geary # email reader
|
|
gnome-characters
|
|
tali # poker game
|
|
iagno # go game
|
|
hitori # sudoku game
|
|
atomix # puzzle game
|
|
yelp # Help view
|
|
gnome-contacts
|
|
gnome-initial-setup
|
|
]);
|
|
environment.systemPackages = with pkgs; [
|
|
gnome.gnome-tweaks
|
|
gnome-extension-manager
|
|
];
|
|
}
|