Modularize gnome config

This commit is contained in:
2025-11-16 01:36:19 +01:00
parent 98faf1c356
commit 0578ba56f9
2 changed files with 12 additions and 6 deletions

11
modules/gnome.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
services.xserver = {
displayManager.gdm.enable = true;
displayManager.gdm.wayland = true;
desktopManager.gnome.enable = true;
};
# TODO: Declare monitors.xml
}