diff options
Diffstat (limited to 'home/default.nix')
| -rw-r--r-- | home/default.nix | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 1ad1b71..9d2669f 100644 --- a/home/default.nix +++ b/home/default.nix @@ -154,6 +154,7 @@ in # cli-tools appimage-run attic-client # nix cache client + bat # cat but with extra features brightnessctl cargo # rust project manager cloc # count llines of code @@ -164,7 +165,6 @@ in file # show the type of file font-awesome # icons forgejo-cli # forgejo-cli - gat # cat but with extra features grim # screen capture inxi # system innformation jq # commandline json parser @@ -347,6 +347,23 @@ in television = { enable = true; enableFishIntegration = true; + settings = { + preview = { + command = "${pkgs.bat}/bin/bat --style=numbers --color=always {}"; + }; + ui = { + use_nerd_font_icons = true; + }; + search = { + command = "${pkgs.ripgrep}/bin/rg"; + }; + keybindings = { + quit = [ + "esc" + "ctrl-c" + ]; + }; + }; }; zathura = { enable = true; |
