nix-config/users/tacocat/wayland/foot.nix

35 lines
820 B
Nix
Raw Normal View History

2023-11-01 04:06:04 +00:00
{
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
shell = "/usr/bin/env zsh";
font = "Mononoki:size=14,FiraCode Nerd Font:size=14";
term = "xterm-256color";
};
colors = {
background = "232136";
foreground = "e0def4";
regular0 = "393552";
regular1 = "eb6f92";
regular2 = "3e8fb0";
regular3 = "f6c177";
regular4 = "9ccfd8";
regular5 = "c4a7e7";
regular6 = "ea9a97";
regular7 = "e0def4";
bright0 = "393552";
bright1 = "eb6f92";
bright2 = "3e8fb0";
bright3 = "f6c177";
bright4 = "9ccfd8";
bright5 = "c4a7e7";
bright6 = "ea9a97";
bright7 = "e0def4";
alpha = "0.9";
};
};
};
}