mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
47 lines
984 B
Nix
47 lines
984 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.ar.desktop.lightdm.enable {
|
|
security.pam.services.lightdm = {
|
|
enableGnomeKeyring = true;
|
|
gnupg.enable = true;
|
|
kwallet.enable = true;
|
|
};
|
|
|
|
services.xserver.displayManager.lightdm = {
|
|
enable = true;
|
|
greeters.slick = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
|
package = pkgs.catppuccin-gtk;
|
|
};
|
|
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.catppuccin-papirus-folders;
|
|
};
|
|
|
|
font = {
|
|
name = "NotoSans Nerd Font Regular";
|
|
package = pkgs.nerdfonts;
|
|
};
|
|
|
|
cursorTheme = {
|
|
name = "Catppuccin-Frappe-Dark-Cursors";
|
|
package = pkgs.catppuccin-cursors.frappeDark;
|
|
size = 24;
|
|
};
|
|
|
|
extraConfig = ''
|
|
background=#303446
|
|
enable-hidpi=on
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|