mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
configured lightdm
This commit is contained in:
parent
ac3b4fcbb4
commit
86c9958a63
8 changed files with 21 additions and 4 deletions
16
hosts/thinkpad/modules/lightdm/default.nix
Normal file
16
hosts/thinkpad/modules/lightdm/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
services.xserver.displayManager.lightdm = {
|
||||
enable = true;
|
||||
background = ../../../../images/wallpaper-blurred.png;
|
||||
greeters.slick = {
|
||||
enable = true;
|
||||
draw-user-backgrounds = true;
|
||||
extraConfig = ''
|
||||
logo = ${../../../../images/nixos-logo.png}
|
||||
show-a11y=false
|
||||
show-hostname=false
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue