Add LightDM module

This commit is contained in:
Daniel Thwaites 2020-12-20 19:43:34 +00:00
parent e058877d58
commit 2ad5b5c6fa
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D
2 changed files with 6 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./stylix/default.nix ./stylix/default.nix
./modules/console.nix ./modules/console.nix
./modules/lightdm.nix
./modules/qutebrowser.nix ./modules/qutebrowser.nix
./modules/vim.nix ./modules/vim.nix
]; ];

5
modules/lightdm.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, ... }:
{
services.xserver.displayManager.lightdm.background = config.stylix.image;
}