Files
nixos-config/modules/home/foot.nix

18 lines
226 B
Nix
Raw Normal View History

2025-12-07 23:52:36 -05:00
{
...
}:
{
programs.foot = {
enable = true;
server.enable = false;
settings = {
main = {
term = "xterm-256color";
};
mouse = {
hide-when-typing = "yes";
};
};
};
}