mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 18:05:59 +01:00
Nix: disable HiDPI for default package
NOTE: the package `hyprland-no-hidpi` was removed, and instead `hyprland-hidpi` exists now.
This commit is contained in:
parent
5be42965ff
commit
cf51a31807
4 changed files with 5 additions and 4 deletions
|
@ -81,8 +81,9 @@
|
||||||
inherit udis86;
|
inherit udis86;
|
||||||
};
|
};
|
||||||
hyprland-debug = hyprland.override {debug = true;};
|
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-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 {};
|
udis86 = prev.callPackage ./nix/udis86.nix {};
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
xwayland,
|
xwayland,
|
||||||
debug ? false,
|
debug ? false,
|
||||||
enableXWayland ? true,
|
enableXWayland ? true,
|
||||||
hidpiXWayland ? true,
|
hidpiXWayland ? false,
|
||||||
legacyRenderer ? false,
|
legacyRenderer ? false,
|
||||||
nvidiaPatches ? false,
|
nvidiaPatches ? false,
|
||||||
withSystemd ? true,
|
withSystemd ? true,
|
||||||
|
|
|
@ -67,7 +67,7 @@ in {
|
||||||
};
|
};
|
||||||
hidpi = lib.mkOption {
|
hidpi = lib.mkOption {
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = ''
|
description = ''
|
||||||
Enable HiDPI XWayland.
|
Enable HiDPI XWayland.
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -47,7 +47,7 @@ in {
|
||||||
};
|
};
|
||||||
hidpi = mkOption {
|
hidpi = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false;
|
||||||
description = ''
|
description = ''
|
||||||
Enable HiDPI XWayland.
|
Enable HiDPI XWayland.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue