summary refs log tree commit diff stats
path: root/users/sils/foot/default.nix
blob: 520edda8cb9c751a50ab25f4559398127a75244f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{...}: {
  programs.foot = {
    enable = true;
    settings = {
      colors = {
        background = "e8ead7";
        foreground = "242424";
      };
    };
  };
}