nixos/home/gui/foot.nix

19 lines
331 B
Nix
Raw Normal View History

{ ... }:
{
imports = [ ./common.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;
};
};
};
}