# SDDM is a display manager for X11 and Wayland { pkgs, inputs, config, ... }: let foreground = config.theme.textColorOnWallpaper; sddm-astronaut = pkgs.sddm-astronaut.override { embeddedTheme = "purple_leaves"; themeConfig = { HeaderTextColor = "#${foreground}"; DateTextColor = "#${foreground}"; TimeTextColor = "#${foreground}"; LoginFieldTextColor = "#${foreground}"; PasswordFieldTextColor = "#${foreground}"; UserIconColor = "#${foreground}"; PasswordIconColor = "#${foreground}"; WarningColor = "#${foreground}"; LoginButtonBackgroundColor = "#${foreground}"; SystemButtonsIconsColor = "#${foreground}"; SessionButtonTextColor = "#${foreground}"; VirtualKeyboardButtonTextColor = "#${foreground}"; DropdownBackgroundColor = "#${foreground}"; HighlightBackgroundColor = "#${foreground}"; }; }; in { services.displayManager = { sddm = { package = pkgs.kdePackages.sddm; extraPackages = [ sddm-astronaut ]; enable = true; wayland.enable = true; theme = "sddm-astronaut-theme"; settings = { Wayland.SessionDir = "${ inputs.hyprland.packages."${pkgs.stdenv.hostPlatform.system}".hyprland }/share/wayland-sessions"; }; }; }; environment.systemPackages = [ sddm-astronaut ]; }