2023-09-25 18:05:07 +00:00
|
|
|
{ pkgs, ... }: {
|
2023-09-15 14:53:38 +00:00
|
|
|
imports = [
|
|
|
|
./bash.nix
|
|
|
|
./bat.nix
|
|
|
|
./direnv.nix
|
|
|
|
./fish.nix
|
|
|
|
./gh.nix
|
|
|
|
./git.nix
|
|
|
|
./gpg.nix
|
|
|
|
./jujutsu.nix
|
|
|
|
./nix-index.nix
|
|
|
|
./pfetch.nix
|
|
|
|
./ranger.nix
|
|
|
|
./screen.nix
|
|
|
|
./ssh.nix
|
|
|
|
];
|
2023-09-25 18:05:07 +00:00
|
|
|
|
2023-09-15 14:53:38 +00:00
|
|
|
home.packages = with pkgs; [
|
2024-05-24 18:03:22 +00:00
|
|
|
comma # Install and run programs by sticking a "," (comma) before them
|
2023-09-15 14:53:38 +00:00
|
|
|
distrobox # Nice escape hatch, integrates docker images with my environment
|
|
|
|
|
|
|
|
bc # Calculator
|
|
|
|
bottom # System viewer
|
|
|
|
ncdu # TUI disk usage
|
2024-05-23 19:02:20 +00:00
|
|
|
eza # Better ls
|
2023-09-15 14:53:38 +00:00
|
|
|
ripgrep # Better grep
|
|
|
|
fd # Better find
|
2023-09-19 17:05:08 +00:00
|
|
|
curl # cURL
|
2023-09-15 14:53:38 +00:00
|
|
|
httpie # Better curl
|
|
|
|
diffsitter # Better diff
|
|
|
|
jq # JSON pretty printer and manipulator
|
|
|
|
timer # To help with my ADHD paralysis
|
|
|
|
|
|
|
|
nil # Nix LSP
|
2024-06-06 15:17:28 +00:00
|
|
|
nixfmt-rfc-style # Nix formatter
|
2023-09-15 14:53:38 +00:00
|
|
|
nix-inspect # See which pkgs are in your PATH
|
|
|
|
|
|
|
|
ltex-ls # Spell checking LSP
|
|
|
|
|
|
|
|
tly # Tally counter
|
|
|
|
];
|
|
|
|
}
|