nixos-config/config/programs/foot.nix

14 lines
232 B
Nix
Raw Normal View History

2023-01-01 09:37:59 +00:00
{...}: {
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
term = "xterm-256color";
2023-01-30 13:17:27 +00:00
font = "FiraCode Nerd Font:size=8";
dpi-aware = "no";
2023-01-01 09:37:59 +00:00
};
};
};
}