dotfiles/nix/home/features/cli/default.nix

26 lines
585 B
Nix
Raw Normal View History

2023-07-28 22:15:33 +00:00
{ pkgs, ... }: {
# Common CLI apps
imports = [
2023-07-28 23:03:24 +00:00
./fish.nix
2023-07-28 22:15:33 +00:00
./tmux.nix
./vim.nix
];
home.packages = with pkgs; [
babelfish # Lets fish speak bash
bottom # Better top
httpie # Better curl
hugo # Static site generator
jq # JSON pretty printer and manipulator
nil # Nix LSP
# nix-inspect # See which pkgs are in your Path
nixfmt # Nix formatter
packer # Hashicorp packer
powershell # Powershell
terraform # Hashicorp terraform
tldr # TLDR pages
trekscii # Cute startrek cli printer
vault # Hashicorp vault
];
}