mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-09-05 19:21:38 +02:00
18 lines
360 B
Nix
18 lines
360 B
Nix
{...}: {
|
|
programs.niri.settings = {
|
|
window-rules = [
|
|
# handle steam grabbing focus 1000 times on startup
|
|
{
|
|
matches = [
|
|
{
|
|
app-id = "steam";
|
|
}
|
|
];
|
|
open-focused = false;
|
|
}
|
|
];
|
|
|
|
# fix electron apps not doing wayland
|
|
environment.ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
|
};
|
|
}
|