12 lines
248 B
Nix
12 lines
248 B
Nix
{pkgs, ...}: {
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
include = "${pkgs.foot.themes}/share/foot/themes/moonfly";
|
|
font = "monospace:size=9";
|
|
};
|
|
mouse.hide-when-typing = true;
|
|
};
|
|
};
|
|
}
|