diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 19:41:29 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-03-08 19:41:29 +0530 |
commit | 68632f8c1797477abdfebc148e73b54a203861e8 (patch) | |
tree | 7c2cccf5be08dc481f5c3abbf35d8912957fad16 /home-manager/gui/modules | |
parent | 3ecdc02f33cb58b6bf313ca7ab2ddd94e49148e8 (diff) |
home-manager/gui: init
Diffstat (limited to 'home-manager/gui/modules')
-rw-r--r-- | home-manager/gui/modules/foot.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/home-manager/gui/modules/foot.nix b/home-manager/gui/modules/foot.nix new file mode 100644 index 0000000..7adaf40 --- /dev/null +++ b/home-manager/gui/modules/foot.nix @@ -0,0 +1,13 @@ +{ ... }: { + programs.foot = { + enable = true; + + settings = { + colors.background = "000000"; + main = { + pad = "10x10"; + font = "monospace:size=18"; + }; + }; + }; +} |