theshire/shell.nix

23 lines
433 B
Nix
Raw Normal View History

2024-06-21 15:58:42 -05:00
# Shell for bootstrapping flake-enabled nix and home-manager
{pkgs ? import <nixpkgs> {}}:
2024-06-19 09:48:16 -05:00
pkgs.mkShell {
2024-06-21 15:58:42 -05:00
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [
fluxcd
2024-06-21 15:58:42 -05:00
git
gitleaks
go-task
helmfile
2024-06-21 15:58:42 -05:00
k9s
2024-07-15 16:18:23 -05:00
krew
2024-06-21 15:58:42 -05:00
kubectl
2024-07-02 12:51:07 -05:00
kubevirt
kubernetes-helm
pre-commit
sops
age
2024-06-19 09:48:16 -05:00
];
}