nix/modules/gdm.nix

13 lines
202 B
Nix
Raw Normal View History

2023-09-04 11:40:30 -05:00
{ config, pkgs, ... }: {
# services.xserver.displayManager.defaultSession
services.xserver = {
enable = true;
displayManager = {
gdm = {
enable = true;
wayland = true;
};
};
};
}