nixfleet/hmModules/foot/default.nix
2022-11-25 14:12:27 +01:00

21 lines
358 B
Nix

{
programs.foot = {
enable = true;
server.enable = true;
settings = {
main = {
term = "xterm-256color";
login-shell = "yes";
font = "Fira Code,Symbols Nerd Font,JoyPixels";
};
mouse = {
hide-when-typing = "yes";
};
colors = {
background = "282C34";
};
};
};
}