Files
nix-config/hosts/common/optional/gdm.nix
2025-07-13 15:44:20 -03:00

8 lines
176 B
Nix

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