21 lines
258 B
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";
|
|
};
|
|
};
|
|
};
|
|
}
|