2023-07-28 22:15:33 +00:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
# Common CLI apps
|
|
|
|
|
|
|
|
imports = [
|
2023-07-29 02:02:51 +00:00
|
|
|
./direnv.nix
|
2023-07-31 17:40:37 +00:00
|
|
|
./go.nix
|
2023-07-29 02:09:22 +00:00
|
|
|
./git.nix
|
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
|
|
|
|
];
|
|
|
|
}
|