actually fixed sddm

This commit is contained in:
shibazaki 2025-01-12 10:04:19 +01:00
parent b75df051ea
commit 9671f768ea

View File

@ -1,3 +1,4 @@
{inputs, pkgs, lib, ...}: {
services.displayManager = { services.displayManager = {
#defaultSession = "hyprland"; #defaultSession = "hyprland";
sddm = { sddm = {
@ -15,11 +16,10 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(sddm-astronaut.override { (sddm-astronaut.override {
themeConfig = { themeConfig = {
ScreenWidth = 1920; ScreenWidth = 2560;
ScreenHeight = 1080; ScreenHeight = 1440;
PartialBlur = false; PartialBlur = false;
}; };
}) })
]; ];
}