mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
25 lines
570 B
Nix
25 lines
570 B
Nix
|
{ pkgs, ... }: {
|
||
|
# Common CLI apps
|
||
|
|
||
|
imports = [
|
||
|
./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
|
||
|
];
|
||
|
}
|