summaryrefslogtreecommitdiff
path: root/home/cez/home.nix
blob: da3f6d66e3779fed1e84d0b787709299ecc5bce3 (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;
  };
}