aboutsummaryrefslogtreecommitdiffstats
path: root/home/sadbeast/features/desktop/foot.nix
blob: 0a6d653013ddb766fc0b5d69bc0d2f7fbf4d2649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  inputs,
  outputs,
  ...
}: {
  programs.foot = {
    enable = true;

    # server.enable = true;

    settings = {
      main = {
        # font = "Iosevka-11:style=Medium,Regular, JoyPixels:charset=1f000-1f644";
        font = "Iosevka-11:style=Medium,Regular";
        font-bold = "Iosevka-11:style=Bold";
        font-italic = "Iosevka-11:style=Italic";

        underline-offset = 1;
      };
    };
  };
}