Finally find a better name for these folders

This commit is contained in:
Jimbo 2024-09-23 23:42:18 -04:00
parent 84eac269d7
commit 2e70b49477
22 changed files with 41 additions and 41 deletions

39
home/programs/foot.nix Normal file
View file

@ -0,0 +1,39 @@
{outputs, ...}: {
# Enable a terminal emulator
programs.foot = {
enable = true;
server.enable = false;
settings = {
main = {
term = "xterm-256color";
font = "${outputs.look.fonts.nerd}:size=14.7";
};
cursor = {
style = "beam";
};
colors = {
alpha = "0.65";
background = "${outputs.look.colors.dark}";
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";
};
};
};
}