From 4fd3ac04dda3a1f3f0cc7b462179a7cca13bb0cf Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Sat, 20 Jan 2024 16:54:51 -0500 Subject: [PATCH] feat(foot): add module --- user/modules/foot.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 user/modules/foot.nix diff --git a/user/modules/foot.nix b/user/modules/foot.nix new file mode 100644 index 0000000..25d5697 --- /dev/null +++ b/user/modules/foot.nix @@ -0,0 +1,10 @@ +{...}: { + programs.foot = { + enable = true; + settings = { + main = { + font = "FiraCode Nerd Font:size=12"; + }; + }; + }; +}