summary refs log tree commit diff stats
path: root/modules/hidpi.nix
blob: 762e50e1b507ff42979d6eb26ff79cf817f7615c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, ... }:

{ i18n = {
    consoleFont = "ter-v24b";
    consolePackages = with pkgs; [
      terminus_font
    ];
  };

  fonts = {
    defaultFonts = {
      monospace = [ "Noto Mono" ];
      sansSerif = [ "Noto Sans" ];
      serif = [ "Noto Serif" ];
    };
  };
}