theshire/shell.nix

30 lines
575 B
Nix
Raw Permalink 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";
2024-11-19 18:16:19 -06:00
shellHook = ''
export TMP=$(mktemp -d "/tmp/nix-shell-XXXXXX")
export TEMP=$TMP
export TMPDIR=$TMP
'';
2024-06-21 15:58:42 -05:00
nativeBuildInputs = with pkgs; [
fluxcd
2024-06-21 15:58:42 -05:00
git
gitleaks
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-09-23 00:38:08 -05:00
mqttui
kustomize
2024-11-06 08:04:05 -06:00
yq-go
2024-06-19 09:48:16 -05:00
];
}