summaryrefslogtreecommitdiff
path: root/hm/shell/foot.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-23 21:22:19 +0100
committeradikro <adikro@disroot.org>2025-12-28 18:40:38 +0100
commit1e845f5ed153aad28c2284959cc00a9054acc55d (patch)
tree884d57d4579446dd1666cceb9652e249256e4ad2 /hm/shell/foot.nix
parente62d5505293a7c26d33fd60130220f2dea920515 (diff)
.
Diffstat (limited to 'hm/shell/foot.nix')
-rw-r--r--hm/shell/foot.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/hm/shell/foot.nix b/hm/shell/foot.nix
deleted file mode 100644
index a9c3eac..0000000
--- a/hm/shell/foot.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ pkgs, lib, config, ... }:
-let
- cfg = config.hm.shell.foot;
-
- footTheme = pkgs.fetchurl {
- url = "https://codeberg.org/dnkl/foot/src/branch/master/themes/gruvbox-dark";
- sha256 = "";
- };
-in
-{
- options.hm.shell.foot = {
- enable = lib.mkEnableOption "foot terminal emulator";
- fontSize = lib.mkOption {
- type = lib.types.int;
- default = 14;
- description = "Font size for the foot terminal";
- };
- };
- config = lib.mkIf cfg.enable {
- programs.foot = {
- enable = true;
- settings = {
- main = {
- font = "JetBrainsMonoNFM-Regular:size=${toString cfg.fontSize}";
- box-drawings-uses-font-glyphs = "yes";
- include = "${footTheme}";
- };
- scrollback = {
- lines = 10000;
- };
- mouse = {
- hide-when-typing = "yes";
- };
- };
- };
- };
-}