Add basic gnome conf

This commit is contained in:
Florian RICHER 2024-04-24 19:05:16 +02:00
parent 4da25248b8
commit bb94436374

11
modules/gnome.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the Gnome Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
# Enable the GNOME shell.
services.xserver.desktopManager.gnome.enable = true;
}