Make Detritus work by any means necessary

This commit is contained in:
Bun 2025-05-13 12:18:30 -04:00
parent b7c5651306
commit 86a180de0c
3 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
{
home-manager.users."${config.sysusers.main}" = {
home = {
@ -6,6 +6,6 @@
stateVersion = lib.mkForce config.system.stateVersion;
};
wayland.windowManager.sway.extraSessionCommands = lib.mkForce "export ELECTRON_OZONE_PLATFORM_HINT=wayland";
wayland.windowManager.sway.package = pkgs.swayfx;
};
}