diff options
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 0000000..1f4644c --- /dev/null +++ b/modules/hidpi.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: + +{ i18n = { + consoleFont = "ter-v24b"; + consolePackages = with pkgs; [ + terminus_font + ]; + }; +} |