mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 12:42:18 +00:00
29 lines
No EOL
629 B
Nix
29 lines
No EOL
629 B
Nix
{ pkgs, ... }: {
|
|
# Common CLI apps
|
|
|
|
imports = [
|
|
./direnv.nix
|
|
./go.nix
|
|
./git.nix
|
|
./fish.nix
|
|
./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
|
|
];
|
|
} |