diff options
author | Mihai Fufezan <[email protected]> | 2023-03-22 17:21:17 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-03-22 19:10:46 +0200 |
commit | cf51a318078c82040eaeab29664bc34144ee1d62 (patch) | |
tree | 9b6159b753903ce41ad0a1d0cc5f4d51f22a34f7 /flake.nix | |
parent | 5be42965ff9df71dcfb41e25663405c3e817ba17 (diff) | |
download | Hyprland-cf51a318078c82040eaeab29664bc34144ee1d62.tar.gz Hyprland-cf51a318078c82040eaeab29664bc34144ee1d62.zip |
Nix: disable HiDPI for default package
NOTE: the package `hyprland-no-hidpi` was removed, and instead
`hyprland-hidpi` exists now.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -81,8 +81,9 @@ inherit udis86; }; hyprland-debug = hyprland.override {debug = true;}; - hyprland-no-hidpi = hyprland.override {hidpiXWayland = false;}; + hyprland-hidpi = hyprland.override {hidpiXWayland = true;}; hyprland-nvidia = hyprland.override {nvidiaPatches = true;}; + hyprland-no-hidpi = builtins.trace "hyprland-no-hidpi was removed. Please use the default package." hyprland; udis86 = prev.callPackage ./nix/udis86.nix {}; |