mirror of
https://github.com/danth/stylix
synced 2024-11-26 22:20:22 +00:00
9 lines
256 B
Nix
9 lines
256 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.lightdm.enable =
|
|
config.lib.stylix.mkEnableTarget "LightDM" true;
|
|
|
|
config.services.xserver.displayManager.lightdm.background =
|
|
lib.mkIf config.stylix.targets.lightdm.enable config.stylix.image;
|
|
}
|