summaryrefslogtreecommitdiff
path: root/home/cez/home.nix
blob: a11c07db5c069adb8bfd2155f2e5293fa9b937de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ ... }: let
  font = "Sans 13";
  monoFont = "monospace:size=18";
in {
  imports = [ ../wayland/home.nix ];

  services.mako.font = font;
  programs = {
    zathura.options.font = font;
    foot.settings.main.font = monoFont;
  };
}