Files

23 lines
554 B
Nix
Raw Permalink Normal View History

2026-04-04 16:46:30 -04:00
{
flake.modules.homeManager.foot =
{ config, ... }:
{
programs.foot = {
enable = true;
server.enable = false;
settings = {
main = {
term = "xterm-256color";
include = "${config.xdg.configHome}/foot/themes/noctalia";
dpi-aware = "no";
2026-04-11 14:21:19 -04:00
font = "${builtins.head config.fonts.fontconfig.defaultFonts.monospace}:size=12";
pad = "10x10";
2026-04-04 16:46:30 -04:00
};
mouse = {
hide-when-typing = "yes";
};
};
};
};
}