diff options
author | Adrian Kummerlaender | 2019-02-01 18:46:54 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-02-01 18:48:35 +0100 |
commit | cec64613630b68a8b0e286df862a92ce555a6bdc (patch) | |
tree | ff10677225010bc1043b770cea5920759089ecf9 /host | |
parent | 51a119b91bc56d57cd857ac5c08cf75b5f61c16e (diff) | |
download | nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar.gz nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar.bz2 nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar.lz nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar.xz nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.tar.zst nixos_home-cec64613630b68a8b0e286df862a92ce555a6bdc.zip |
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.
Diffstat (limited to 'host')
-rw-r--r-- | host/asterix.nix | 3 | ||||
-rw-r--r-- | host/athena.nix | 3 | ||||
-rw-r--r-- | host/obelix.nix | 3 |
3 files changed, 6 insertions, 3 deletions
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; } |