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

16 lines
229 B
Nix
Raw Normal View History

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