This commit is contained in:
Till 2023-05-28 02:06:12 +02:00
parent a70d1cac4b
commit b437f162c8
7 changed files with 98 additions and 14 deletions

View file

@ -5,7 +5,18 @@
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
services.gnome.gnome-browser-connector.enable = true;
environment.systemPackages = [
pkgs.gnome.gnome-tweaks
environment.gnome.excludePackages = (with pkgs; [
# gnome-photos
gnome-tour
]) ++ (with pkgs.gnome; [
epiphany
geary
yelp
gnome-contacts
gnome-initial-setup
]);
environment.systemPackages = with pkgs.gnome; [
gnome-tweaks
gedit
];
}