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
|
2024-01-07 15:35:19 +01:00
|
|
|
timer # Nice looking timer
|
2023-12-26 13:59:30 +01:00
|
|
|
lazydocker # Docker TUI
|
2024-01-07 15:35:19 +01:00
|
|
|
neofetch # Unixporn stuff
|
|
|
|
tldr # Nice & short manual snippets
|
|
|
|
ntfy-sh # Push notifications to other devices
|
|
|
|
ipinfo # IP geolocation
|
2024-02-26 16:10:10 +01:00
|
|
|
ranger # TUI file manager
|
2024-03-02 12:28:51 +01:00
|
|
|
trickle # cli network limiter
|
|
|
|
du-dust # disk usage visualizer
|
2024-03-03 15:11:52 +01:00
|
|
|
lftp # FTP client
|
2024-05-06 17:38:33 +02:00
|
|
|
unar # unarchive files like rar, zip, tar
|
2023-12-26 13:59:30 +01:00
|
|
|
|
|
|
|
nvd # Differ
|
|
|
|
nix-output-monitor
|
|
|
|
nh # Nice wrapper for NixOS and HM
|
|
|
|
];
|
|
|
|
}
|