nixos-config/hosts/thinkpad/modules/lightdm/default.nix

16 lines
337 B
Nix
Raw Normal View History

2022-12-31 12:28:53 +01:00
{ config, pkgs, ... }:
{
services.xserver.displayManager.lightdm = {
enable = true;
2023-01-04 16:15:56 +01:00
background = ../../../../images/lockscreen.png;
2022-12-31 12:28:53 +01:00
greeters.slick = {
enable = true;
extraConfig = ''
logo = ${../../../../images/nixos-logo.png}
show-a11y=false
show-hostname=false
'';
};
};
}