Files
Foundry/home/misterio/features/cli/default.nix
T
Gabriel Fontes 7885b414a4 format with alejandra
okay i'm not a big fan of nixfmt in the end
2024-04-07 14:21:47 -03:00

52 lines
1.0 KiB
Nix

{pkgs, ...}: {
imports = [
./bash.nix
./bat.nix
./direnv.nix
./fish.nix
./gh.nix
./git.nix
./gpg.nix
./jujutsu.nix
./lyrics.nix
./nix-index.nix
./pfetch.nix
./ranger.nix
./screen.nix
./shellcolor.nix
./ssh.nix
./starship.nix
./xpo.nix
./fzf.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
bottom # System viewer
ncdu # TUI disk usage
eza # Better ls
ripgrep # Better grep
fd # Better find
httpie # Better curl
diffsitter # Better diff
jq # JSON pretty printer and manipulator
trekscii # Cute startrek cli printer
timer # To help with my ADHD paralysis
nil # Nix LSP
nixfmt-rfc-style # Nix formatter
nvd # Differ
nix-output-monitor
nh # Nice wrapper for NixOS and HM
ltex-ls # Spell checking LSP
tly # Tally counter
awscli2
inputs.awscli-console.default
];
}