summaryrefslogtreecommitdiff
path: root/modules/desktops/hyprland/env.nix
blob: 2d79da5c9a0fbaea5bd4893796c78dde87342d98 (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"
      ];
    };
  };
}