nyx/modules/home-manager/cli/foot/default.nix

27 lines
506 B
Nix
Raw Permalink Normal View History

2024-12-20 13:11:42 +00:00
{
pkgs,
lib,
config,
...
}: {
2024-10-13 13:58:17 +00:00
programs.foot = {
enable = true;
settings = {
main = {
include = "${pkgs.foot.themes}/share/foot/themes/catppuccin-mocha";
term = "xterm-256color";
title = "foot";
font = "SpaceMono Nerd Font:size=11";
letter-spacing = 0;
pad = "25x25";
};
2024-10-13 13:58:17 +00:00
cursor = {
color = "11111b f5e0dc";
style = "beam";
beam-thickness = 1.5;
};
2024-12-20 13:11:42 +00:00
colors = {alpha = 0.9;};
2024-10-13 13:58:17 +00:00
};
};
}