nixos-config/home/profiles/terminal/emulator/foot.nix
2025-01-16 10:08:58 +01:00

12 lines
259 B
Nix

{pkgs, ...}: {
programs.foot = {
enable = true;
settings = {
main = {
# include = "${pkgs.foot.themes}/share/foot/themes/modus-operandi";
# font = "monospace:size=9";
};
mouse.hide-when-typing = true;
};
};
}