Add gnome module

This commit is contained in:
Tibo De Peuter 2023-03-28 19:03:54 +02:00
parent ba81862388
commit 4a5cbee5c3

View file

@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }:
{
services.xserver = {
enable = true;
# Enable the GNOME Desktop Environment.
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
};
environment.gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
xterm
]) ++ (with pkgs.gnome; [
gedit
gnome-terminal
]);
}