diff options
author | Adrian Kummerlaender | 2019-02-01 18:12:00 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-02-01 18:12:00 +0100 |
commit | 51a119b91bc56d57cd857ac5c08cf75b5f61c16e (patch) | |
tree | 879be29e8d3ea3973a98b43c2daec1e40df17ee9 /gui | |
parent | 23daf221614e2206c9b9e7d1c6f29a3d20522aee (diff) | |
download | nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar.gz nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar.bz2 nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar.lz nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar.xz nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.tar.zst nixos_home-51a119b91bc56d57cd857ac5c08cf75b5f61c16e.zip |
Add missing lowdpi nix expression
Diffstat (limited to 'gui')
-rw-r--r-- | gui/lowdpi.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gui/lowdpi.nix b/gui/lowdpi.nix new file mode 100644 index 0000000..6410f23 --- /dev/null +++ b/gui/lowdpi.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + xsession.pointerCursor.size = 16; + + home.file.".config/twmn/twmn.conf".text = '' + [gui] + font_size=15 + height=20 + ''; +} |