mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
19 lines
404 B
Nix
19 lines
404 B
Nix
{pkgs, ...}: {
|
|
environment.gnome.excludePackages =
|
|
(with pkgs; [
|
|
gnome-photos
|
|
gnome-tour
|
|
])
|
|
++ (with pkgs.gnome; [
|
|
cheese # webcam tool
|
|
epiphany # web browser
|
|
geary # email reader
|
|
gnome-characters
|
|
gnome-contacts
|
|
gnome-initial-setup
|
|
]);
|
|
environment.systemPackages = with pkgs; [
|
|
gnome.gnome-tweaks
|
|
gnome-extension-manager
|
|
];
|
|
}
|