feat(foot): add module

This commit is contained in:
Michael Thomas 2024-01-20 16:54:51 -05:00
parent 3d535ac1b4
commit 4fd3ac04dd

10
user/modules/foot.nix Normal file
View File

@ -0,0 +1,10 @@
{...}: {
programs.foot = {
enable = true;
settings = {
main = {
font = "FiraCode Nerd Font:size=12";
};
};
};
}