6 lines
121 B
Nix
6 lines
121 B
Nix
{ lib, config, ... }:
|
|
{
|
|
services = lib.mkIf config.device.dm.gdm.enable {
|
|
displayManager.gdm.enable = true;
|
|
};
|
|
}
|