updated foot to stop printing error messages

This commit is contained in:
2026-08-17 20:53:39 -07:00
parent 8f61297dcb
commit 9bca669f4e

View File

@@ -1,17 +1,12 @@
{ pkgs, ... }:
{
programs.foot = {
enable = true;
settings = {
main = {
font = "JetBrainsMono Nerd Font:size=16";
padding = "8x8";
};
colors = {
background = "0f172a";
foreground = "f8fafc";
};
};
programs.foot = {
enable = true;
settings = {
main = {
font = "JetBrainsMono Nerd Font:size=16";
};
};
};
}