enable display manager on desktop
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 13m10s

This commit is contained in:
2025-05-06 22:47:47 +02:00
parent 3b7c49041c
commit 633eea8877
3 changed files with 17 additions and 8 deletions

View File

@ -0,0 +1,15 @@
{config, lib, ... }:
{
options.mods.displayManager.enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "enable the display manager";
};
config = lib.mkIf config.mods.displayManager.enable {
services.displayManager.enable = true;
services.displayManager.ly.enable = true;
};
}