From ab05f3dfe4c6a0d875057d4ca0495ac67dd37c45 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Tue, 28 Oct 2025 01:56:39 +0000 Subject: [PATCH] Fix: add missing 'lib' parameter to user configuration for desktop-specific Hyprland monitor settings --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index bbf7628..8b0fcaa 100644 --- a/flake.nix +++ b/flake.nix @@ -43,11 +43,11 @@ home-manager.backupFileExtension = "backup"; # User configuration with desktop-specific overrides - home-manager.users.zeph = { ... }: { + home-manager.users.zeph = { lib, ... }: { imports = [ ./home/home.nix ]; # Desktop-specific Hyprland monitor configuration - wayland.windowManager.hyprland.settings.monitor = [ + wayland.windowManager.hyprland.settings.monitor = lib.mkForce [ "DP-2,2560x1440@165,0x0,1" # Main monitor (1440p @ 165Hz) "DP-1,3840x2160@60,2560x0,1" # 4K monitor to the right ];