NixOS-Config/home-manager/desktop/package-configs/foot/default.nix

21 lines
258 B
Nix

{
lib,
pkgs,
inputs,
...
}: {
programs.foot = {
enable = true;
catppuccin.enable = true;
settings = {
main = {
font = "Fira Code:size=11";
};
mouse = {
hide-when-typing = "yes";
};
};
};
}