From 9671f768ea7471e26239a0136d46b0d14e9d03de Mon Sep 17 00:00:00 2001 From: shibazaki Date: Sun, 12 Jan 2025 10:04:19 +0100 Subject: [PATCH] actually fixed sddm --- nixos/system/display-manager.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/system/display-manager.nix b/nixos/system/display-manager.nix index aa24586..2d8a5b2 100644 --- a/nixos/system/display-manager.nix +++ b/nixos/system/display-manager.nix @@ -1,3 +1,4 @@ +{inputs, pkgs, lib, ...}: { services.displayManager = { #defaultSession = "hyprland"; sddm = { @@ -15,11 +16,10 @@ environment.systemPackages = with pkgs; [ (sddm-astronaut.override { themeConfig = { - ScreenWidth = 1920; - ScreenHeight = 1080; + ScreenWidth = 2560; + ScreenHeight = 1440; PartialBlur = false; }; }) ]; - - +}