nixos/home/modules/terminal/foot/default.nix
2025-11-16 01:03:19 +01:00

18 lines
382 B
Nix

{ config, ... }:
{
home.file.".config/foot/themes".source = ./themes;
programs.foot = {
enable = true;
settings = {
main = {
shell = "fish";
pad = "0x0center";
font = "Maple Mono NF:size=12";
include = "${config.xdg.configHome}/foot/themes/kanagawa.ini";
};
scrollback = {
lines = 100000;
};
};
};
}