nixos-config/config/programs/foot.nix

13 lines
234 B
Nix

{...}: {
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
term = "xterm-256color";
font = "FiraCode Nerd Font:size=12";
dpi-aware = "yes";
};
};
};
}