Files
nix-config/hosts/common/optional/gdm.nix
2025-07-22 09:39:33 -03:00

8 lines
184 B
Nix

# NOTE(starter): This is just a basic enabling of the XFCE windows manager for simplicity
{
services.xserver.displayManager = {
gdm.enable = true;
gdm.wayland = true;
};
}