From c7a418c2516ab2c92903549141dedf791f46acb2 Mon Sep 17 00:00:00 2001 From: KnightArtorias Date: Sun, 17 May 2026 17:50:15 +0000 Subject: [PATCH] Float POL launcher --- hosts/physical/crow/host-configs/niri/config.kdl | 2 ++ hosts/physical/crow/system-configuration.nix | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/hosts/physical/crow/host-configs/niri/config.kdl b/hosts/physical/crow/host-configs/niri/config.kdl index 23305f6..681873d 100644 --- a/hosts/physical/crow/host-configs/niri/config.kdl +++ b/hosts/physical/crow/host-configs/niri/config.kdl @@ -101,6 +101,8 @@ window-rule { window-rule { match app-id=r#"^steam_app_default$"# title=r#"^PlayOnline Viewer.+$"# open-floating true + default-column-width { fixed 1280; } + default-window-height { fixed 720; } } // Example: block out two password managers from screen capture. diff --git a/hosts/physical/crow/system-configuration.nix b/hosts/physical/crow/system-configuration.nix index 10d8cf2..1df43e4 100644 --- a/hosts/physical/crow/system-configuration.nix +++ b/hosts/physical/crow/system-configuration.nix @@ -11,5 +11,11 @@ boot.kernelModules = [ "amdgpu" ]; system.stateVersion = "26.05"; + + # Enable 32 bit graphics + hardware.graphics = { + enable = true; + enable32Bit = true; + }; }