aboutsummaryrefslogtreecommitdiffstats
path: root/home
diff options
context:
space:
mode:
authorPetri Hienonen <petri.hienonen@gmail.com>2026-03-21 17:15:21 +0200
committerPetri Hienonen <petri.hienonen@gmail.com>2026-03-21 19:34:23 +0200
commit5a0bee46bef86afd27d65c5dbf438a0c8d3c2603 (patch)
treedb76486334a8b2583013564d19862a3e9a0ce0ae /home
parent5d00c29480df13461b1c0a15968ac23a1e3527fe (diff)
downloadnixos-master.tar.zst
Add televisionHEADmaster
Diffstat (limited to 'home')
-rw-r--r--home/default.nix19
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;