diff options
author | Alan Pearce | 2017-09-09 14:41:35 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | 3bea12cd01499c02b0f5d8b33b658b529ebf9d1e (patch) | |
tree | 3e722aac2e57b9f86cc2824ffde9182820164a0c /modules | |
parent | c24e26149c78725b33c68b6bce46cc9fc79f9bea (diff) | |
download | nixfiles-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.tar.lz nixfiles-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.tar.zst nixfiles-3bea12cd01499c02b0f5d8b33b658b529ebf9d1e.zip |
Create hidpi configuration module
Diffstat (limited to 'modules')
-rw-r--r-- | modules/hidpi.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/hidpi.nix b/modules/hidpi.nix new file mode 100644 index 00000000..1f4644c5 --- /dev/null +++ b/modules/hidpi.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ i18n = { + consoleFont = "ter-v24b"; + consolePackages = with pkgs; [ + terminus_font + ]; + }; +} |