summaryrefslogtreecommitdiff
path: root/modules/desktops/hyprland/env.nix
blob: 7ff3eb73c27355dbfd95818a6dfd351c5e204668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{config,...}: {
  home-manager.users.${config.user} = {
    wayland.windowManager.hyprland.settings = {
      env = [
        "XDG_CURRENT_DESKTOP,Hyprland"
        "XDG_SESSION_TYPE,wayland"
        "XDG_SESSION_DESKTOP,Hyprland"
        "MOZ_ENABLE_WAYLAND,1"
      ];
    };
  };
}