Files
clan-core/templates/clan/default/modules/gnome.nix
2025-07-24 22:07:46 +02:00

16 lines
327 B
Nix

{ ... }:
{
# Can be imported into machines to enable GNOME and GDM.
#
# Copy this into a machine's configuration:
# `machines/<name>/configuration.nix`
# ```nix
# imports = [
# ../../modules/gnome.nix
# ];
# ```
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
}