NixOS-Config/modules/home/programs/gui/foot/default.nix

40 lines
902 B
Nix
Raw Normal View History

2024-10-15 02:40:43 -04:00
{ config, ... }:
2024-10-09 03:36:08 -04:00
{
2024-08-24 22:16:51 -04:00
programs.foot = {
enable = true;
server.enable = false;
settings = {
2024-09-23 16:22:01 -04:00
main = {
2024-08-24 22:16:51 -04:00
term = "xterm-256color";
2024-10-15 02:40:43 -04:00
font = "${config.look.fonts.nerd}:size=14.7";
2024-08-24 22:16:51 -04:00
};
cursor = {
style = "beam";
};
2024-09-23 16:22:01 -04:00
colors = {
alpha = "0.85";
2024-10-15 02:40:43 -04:00
background = "${config.look.colors.dark}";
2024-08-24 22:16:51 -04:00
regular0 = "3f3f3f";
regular1 = "cc0000";
regular2 = "4e9a06";
regular3 = "c4a000";
regular4 = "94bff3";
regular5 = "85678f";
regular6 = "06989a";
regular7 = "dcdccc";
bright0 = "545454";
bright1 = "fc5454";
bright2 = "8ae234";
bright3 = "fce94f";
bright4 = "94bff3";
bright5 = "b294bb";
bright6 = "93e0e3";
bright7 = "ffffff";
};
key-bindings = {
search-start = "Control+f";
};
};
};
}