nix/modules/home/desktop/hyprland/fixes.nix

23 lines
362 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ ... }:
{
home.file.".config/electron-flags.conf" = {
enable = true;
executable = false;
text =''
--enable-features=UseOzonePlatform --ozone-platform=wayland
'';
};
home.sessionVariables = {
NIXOS_OZONE_WL = "1";
};
programs.bash = {
enable = true;
#sessionVariables = {
# NIXOS_OZONE_WL = "1";
#};
};
}