From cec64613630b68a8b0e286df862a92ce555a6bdc Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 1 Feb 2019 18:46:54 +0100 Subject: Add custom config key for enabling hidpi mode If this approach works as well as I hope it might become advantageous to nixify e.g. XMonad configuration. --- host/asterix.nix | 3 ++- host/athena.nix | 3 ++- host/obelix.nix | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) (limited to 'host') diff --git a/host/asterix.nix b/host/asterix.nix index 1830779..7862a21 100644 --- a/host/asterix.nix +++ b/host/asterix.nix @@ -3,7 +3,6 @@ { imports = [ ../gui/default.nix - ../gui/lowdpi.nix ../gui/autorandr.nix ../gui/networkmanager.nix ]; @@ -11,4 +10,6 @@ home.packages = with pkgs; [ acpi ]; + + custom.hidpi = false; } diff --git a/host/athena.nix b/host/athena.nix index 4e8a824..362d7cd 100644 --- a/host/athena.nix +++ b/host/athena.nix @@ -3,7 +3,6 @@ { imports = [ ../gui/default.nix - ../gui/hidpi.nix ../gui/networkmanager.nix ../gui/stalonetray.nix ../gui/redshift.nix @@ -14,4 +13,6 @@ acpi xorg.xbacklight ]; + + custom.hidpi = true; } diff --git a/host/obelix.nix b/host/obelix.nix index 8bbb62a..26a17ea 100644 --- a/host/obelix.nix +++ b/host/obelix.nix @@ -3,6 +3,7 @@ { imports = [ ../gui/default.nix - ../gui/lowdpi.nix ]; + + custom.hidpi = false; } -- cgit v1.2.3