diff options
author | sterni <sternenseemann@systemli.org> | 2023-03-24T13·33+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-27T14·32+0000 |
commit | deccd8d39e9ef2c19b90e25469588adad7f8de17 (patch) | |
tree | 1214ac68ed385d097fae874cef8b2612fd6ad2c0 /users/wpcarro/nixos | |
parent | 5553a175e68d57e5a547ab82b9173e15ce09241a (diff) |
chore(3p/sources): Bump channels & overlays r/6048
* //users/wpcarro/avaSystem: disable hidpi Recent changes have made nixpkgs adopt the position that hidpi optimization can't be done generically and at the very least needs to know a specific DPI number to optimize for. In addition to knowledge of the display(s) in question (i.e. wpcarro needs to do this) the issue <https://github.com/NixOS/nixpkgs/issues/222805> can give guidance as to how to restore the desired hidpi look and feel. Change-Id: Ia4b079a06dcb710050619f350cd0655216b4a42f Reviewed-on: https://cl.tvl.fyi/c/depot/+/8345 Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: wpcarro <wpcarro@gmail.com> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'users/wpcarro/nixos')
-rw-r--r-- | users/wpcarro/nixos/modules/hardware/nopn.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/wpcarro/nixos/modules/hardware/nopn.nix b/users/wpcarro/nixos/modules/hardware/nopn.nix index 7733f5331ba6..a3569542126f 100644 --- a/users/wpcarro/nixos/modules/hardware/nopn.nix +++ b/users/wpcarro/nixos/modules/hardware/nopn.nix @@ -47,6 +47,7 @@ swapDevices = [ ]; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + # TODO(wpcarro): https://github.com/NixOS/nixpkgs/issues/222805 # high-resolution display - hardware.video.hidpi.enable = lib.mkDefault true; + # hardware.video.hidpi.enable = lib.mkDefault true; } |