mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
16 lines
344 B
Nix
16 lines
344 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.xserver.displayManager.lightdm = {
|
|
enable = true;
|
|
background = ../../../../images/wallpaper-blurred.png;
|
|
greeters.slick = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
logo = ${../../../../images/nixos-logo.png}
|
|
show-a11y=false
|
|
show-hostname=false
|
|
'';
|
|
};
|
|
};
|
|
}
|