From 220f86840ae6957fa682b316b82b6591c103f360 Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Fri, 31 Jan 2025 23:11:11 +0100 Subject: [PATCH] Install some cool cli tools/plugins. --- hosts/nixos/home.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index b0bf96e..9fc1a5f 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -24,6 +24,7 @@ stress-ng dmidecode nurl + entr ]; # Install librewolf @@ -90,6 +91,28 @@ nix-direnv.enable = true; }; + # Install the fuck + programs.thefuck = { + enable = true; + enableZshIntegration = true; + }; + + # Install tealdeer + programs.tealdeer.enable = true; + + # Install bat + programs.bat.enable = true; + + # Install jq + programs.jq.enable = true; + + # Install fd + programs.fd = { + enable = true; + hidden = true; + ignores = ["~/Documents/Share" ".git"]; + }; + # Default environmental variables home.sessionVariables = { EDITOR = "nvim";