flake/home/applications/foot/default.nix

14 lines
166 B
Nix
Raw Normal View History

2024-06-23 07:31:24 +00:00
{
pkgs,
lib,
...
}: {
programs.foot = {
enable = true;
settings = {
main.font = "monospace:size=10";
cursor.style = "beam";
};
};
}