From e5151e75ed7ed1feaee6bf287880478ea80138b1 Mon Sep 17 00:00:00 2001 From: Marty Sluijtman Date: Wed, 27 Dec 2023 13:17:57 +0100 Subject: [PATCH] More fine grained functions --- modules/xconfig.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/xconfig.nix b/modules/xconfig.nix index bb6505b..abeb4dc 100644 --- a/modules/xconfig.nix +++ b/modules/xconfig.nix @@ -19,7 +19,8 @@ in { ''; }; - displayManager.background = mkOption { + lightdm.enable = mkEnableOption "Enables the LightDM display manager and config"; + lightdm.background = mkOption { default = ./images/city.png; type = types.path; description = '' @@ -48,7 +49,7 @@ in { windowmaker.enable = true; xmonad.enable = true; }; - displayManager.lightdm = { + displayManager.lightdm = mkEnableOption cfg.lightdm.enable { enable = true; greeters.gtk.enable = true; background = cfg.displayManager.background;