nixos-config/modules/nixos/gnome.nix

7 lines
148 B
Nix

{ pkgs, ... }:
{
# Enables the GNOME DE and GDM DM
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
}