initial commit

This commit is contained in:
2026-08-15 16:21:08 -07:00
commit a67158f51b
24 changed files with 814 additions and 0 deletions

17
home/foot.nix Normal file
View File

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