mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:03:56 -05:00
desktop: added lightdm for budgie
This commit is contained in:
parent
6f372c72a5
commit
997bff26f4
|
@ -9,6 +9,7 @@
|
||||||
./gnome
|
./gnome
|
||||||
./greetd
|
./greetd
|
||||||
./hyprland
|
./hyprland
|
||||||
|
./lightdm
|
||||||
./plasma
|
./plasma
|
||||||
./sway
|
./sway
|
||||||
];
|
];
|
||||||
|
|
49
nixosModules/desktop/lightdm/default.nix
Normal file
49
nixosModules/desktop/lightdm/default.nix
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
options = {
|
||||||
|
alyraffauf.desktop.lightdm.enable =
|
||||||
|
lib.mkEnableOption
|
||||||
|
"Lightdm and slick greeter with Catppuccin theme.";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf config.alyraffauf.desktop.lightdm.enable {
|
||||||
|
security.pam.services.lightdm.enableKwallet = true;
|
||||||
|
security.pam.services.lightdm.enableGnomeKeyring = true;
|
||||||
|
|
||||||
|
services.xserver.displayManager.lightdm = {
|
||||||
|
enable = true;
|
||||||
|
greeters.slick = {
|
||||||
|
enable = true;
|
||||||
|
theme.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
||||||
|
theme.package = pkgs.catppuccin-gtk.override {
|
||||||
|
accents = ["mauve"];
|
||||||
|
size = "compact";
|
||||||
|
variant = "frappe";
|
||||||
|
tweaks = ["normal"];
|
||||||
|
};
|
||||||
|
|
||||||
|
iconTheme.name = "Papirus-Dark";
|
||||||
|
iconTheme.package = pkgs.catppuccin-papirus-folders.override {
|
||||||
|
flavor = "frappe";
|
||||||
|
accent = "mauve";
|
||||||
|
};
|
||||||
|
|
||||||
|
font.name = "NotoSansNerdFont-Regular";
|
||||||
|
font.package = pkgs.nerdfonts.override {fonts = ["Noto"];};
|
||||||
|
|
||||||
|
cursorTheme.package = pkgs.catppuccin-cursors.frappeDark;
|
||||||
|
cursorTheme.name = "Catppuccin-Frappe-Dark-Cursors";
|
||||||
|
cursorTheme.size = 24;
|
||||||
|
|
||||||
|
extraConfig = ''
|
||||||
|
background=#303446
|
||||||
|
enable-hidpi=on
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue