nix-config/home/features/cli/default.nix

33 lines
735 B
Nix
Raw Normal View History

2023-12-26 13:59:30 +01:00
{pkgs, ...}: {
imports = [
./bat.nix
./direnv.nix
./fish.nix
./git.nix
./gpg.nix
./btop.nix
./nix-index.nix
./lazygit.nix
];
home.packages = with pkgs; [
comma # Install and run programs by sticking a , before them
distrobox # Nice escape hatch, integrates docker images with my environment
bc # Calculator
eza # Better ls
ripgrep # Better grep
fd # Better find
httpie # Better curl
diffsitter # Better diff
jq # JSON pretty printer and manipulator
timer # To help with my ADHD paralysis
lazydocker # Docker TUI
neofetch
tldr # nice & short manual snippets
2023-12-26 13:59:30 +01:00
nvd # Differ
nix-output-monitor
nh # Nice wrapper for NixOS and HM
];
}