nixos/home/gui/foot.nix

18 lines
301 B
Nix

{ ... }:
{
fonts.fontconfig.enable = true;
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "FiraCode Nerd Font:size=8";
dpi-aware = "yes";
};
mouse = {
hide-when-typing = true;
};
};
};
}