{ pkgs, ... }: let theme = import ../theme.nix; flavor = theme.flavor; in { environment.systemPackages = with pkgs; [ (catppuccin-sddm.override { flavor = flavor; font = theme.nerdFont; fontSize = "9"; background = "${../wallpapers/catppuccin_high.png}"; loginBackground = true; }) ]; services.displayManager.sddm = { enable = true; theme = "catppuccin-${flavor}"; wayland.enable = true; package = pkgs.kdePackages.sddm; }; }