diff options
| author | adikro <adikro@disroot.org> | 2025-12-03 22:18:16 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2025-12-03 22:18:16 +0100 |
| commit | 611576f9ee5232dfc399843c12dfeed5d58ec9ad (patch) | |
| tree | 7aca474c5b603c0b79379290e453012a71a61222 /home/terminal/foot.nix | |
| parent | ca4e63650bfe066313ec4c5407740dbe1664e3f0 (diff) | |
fixed screensharing on niri (by removing hyprland), configured some shell utilities
Diffstat (limited to 'home/terminal/foot.nix')
| -rw-r--r-- | home/terminal/foot.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/home/terminal/foot.nix b/home/terminal/foot.nix new file mode 100644 index 0000000..5c3098b --- /dev/null +++ b/home/terminal/foot.nix @@ -0,0 +1,25 @@ +{pkgs, ...}: +let + footTheme = pkgs.fetchurl { + url = "https://codeberg.org/dnkl/foot/raw/branch/master/themes/gruvbox-dark"; + sha256 = "sha256-ubvnLgDEPGvNrwQdZRNguftg2SF5qcO1iVK0Tb5ZveI="; + }; +in +{ + programs.foot = { + enable = true; + settings = { + main = { + font="JetBrainsMonoNFM-Regular:size=14"; +# font-bold = "${font}:style=Bold:${withSize}"; +# font-italic = "${fontItalic}:style=Italic:${withSize}"; +# font-bold-italic = "${fontItalic}:style=BoldItalic:${withSize}"; + box-drawings-uses-font-glyphs = true; + include = "${footTheme}"; +}; + scrollback = { + lines = 10000; + }; + }; + }; + } |
