nixos-config/config/programs/foot.nix

14 lines
233 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-01 14:39:50 +00:00
font = "FiraCode Nerd Font:size=6";
2023-01-01 09:37:59 +00:00
dpi-aware = "yes";
};
};
};
}