Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix xwayland config option for nix #587

Merged
merged 1 commit into from
Aug 27, 2022
Merged

Commits on Aug 27, 2022

  1. fix xwayland config option for nix

    When building Hyprland in nix using the following home-manager recipe:
    
    ```nix
    wayland.windowManager.hyprland = {
        enable = true;
        xwayland = false;
      };
    ```
    
    The default nix configuration still makes reference to a compile argument `NO_XWAYLAND`, but the `meson_options.txt` only makes reference to `xwayland`. This causes the build to fail with:
    
    ```
    meson.build:1:0: ERROR: Unknown options: "NO_XWAYLAND"
    ```
    
    This change fixes that issue. This still doesn't allow you to build Hyprland without having XWayland installed (hyprwm#178), but it should at least allow for valid nix configurations for when that issue gets resolved.
    nicholascioli authored Aug 27, 2022
    Configuration menu
    Copy the full SHA
    9a7901f View commit details
    Browse the repository at this point in the history