new and impruved

This commit is contained in:
zastian@mrthoddata.com
2025-05-07 15:45:08 +01:00
commit bdf553079b
197 changed files with 5824 additions and 0 deletions

20
dots/foot.nix Executable file
View File

@@ -0,0 +1,20 @@
{
pkgs,
config,
lib,
...
}:
{
programs.foot = {
enable = true;
settings = {
main = {
pad = "5x5";
};
colors = {
alpha = lib.mkForce (0.9);
};
};
};
}