mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-10 04:42:17 +00:00
20 lines
No EOL
408 B
Nix
20 lines
No EOL
408 B
Nix
{ pkgs, ... }: {
|
|
# Extra CLI apps
|
|
|
|
imports = [
|
|
../default.nix
|
|
./direnv.nix
|
|
./go.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
hugo # Static site generator
|
|
nil # Nix LSP
|
|
# nix-inspect # See which pkgs are in your Path
|
|
nixfmt # Nix formatter
|
|
packer # Hashicorp packer
|
|
terraform # Hashicorp terraform
|
|
trekscii # Cute startrek cli printer
|
|
vault # Hashicorp vault
|
|
];
|
|
} |