diff options
| author | Petri Hienonen <petri.hienonen@gmail.com> | 2026-03-21 17:15:21 +0200 |
|---|---|---|
| committer | Petri Hienonen <petri.hienonen@gmail.com> | 2026-03-21 19:34:23 +0200 |
| commit | 5a0bee46bef86afd27d65c5dbf438a0c8d3c2603 (patch) | |
| tree | db76486334a8b2583013564d19862a3e9a0ce0ae /home | |
| parent | 5d00c29480df13461b1c0a15968ac23a1e3527fe (diff) | |
| download | nixos-master.tar.zst | |
Diffstat (limited to 'home')
| -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; |
