diff --git a/flake.nix b/flake.nix index b93c09a..bbf7628 100644 --- a/flake.nix +++ b/flake.nix @@ -42,8 +42,16 @@ home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.backupFileExtension = "backup"; - # User configuration - home-manager.users.zeph = import ./home/home.nix; + # User configuration with desktop-specific overrides + home-manager.users.zeph = { ... }: { + imports = [ ./home/home.nix ]; + + # Desktop-specific Hyprland monitor configuration + wayland.windowManager.hyprland.settings.monitor = [ + "DP-2,2560x1440@165,0x0,1" # Main monitor (1440p @ 165Hz) + "DP-1,3840x2160@60,2560x0,1" # 4K monitor to the right + ]; + }; } ]; };