aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/foot.nix
blob: b75c05c041fb9f2e3a264457893848cfd181cb61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  flake.modules.homeManager.foot =
    { ... }:
    {
      programs.foot = {
        enable = true;
        settings = {
          main = {
            term = "xterm-256color";
            font = "JetBrains Mono:size=11";
            dpi-aware = "yes";
          };
          colors = {
            alpha = 0.9;
            background = "000000";
            foreground = "ffffff";
          };
        };
      };
    };
}