programs.foot.settings

NixOS option

Configuration for foot terminal emulator. Further information can be found in man 5 foot.ini. Global configuration has to be written under the [main] section.

type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string) or a list of them for duplicate keys)
Default
{ }
Example
{
  main = {
    font = "FreeMono:size=12";
  };
  scrollback = {
    lines = 100000;
  };
}
declared in: nixos/modules/programs/footView source on NixOS/nixpkgs →