aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2023-03-22 17:21:17 +0200
committerMihai Fufezan <[email protected]>2023-03-22 19:10:46 +0200
commitcf51a318078c82040eaeab29664bc34144ee1d62 (patch)
tree9b6159b753903ce41ad0a1d0cc5f4d51f22a34f7 /flake.nix
parent5be42965ff9df71dcfb41e25663405c3e817ba17 (diff)
downloadHyprland-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.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 561de707..71a6cbf6 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 {};