24 lines
456 B
Nix
24 lines
456 B
Nix
# Shell for bootstrapping flake-enabled nix and home-manager
|
|
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
# Enable experimental features without having to specify the argument
|
|
NIX_CONFIG = "experimental-features = nix-command flakes";
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
fluxcd
|
|
git
|
|
gitleaks
|
|
helmfile
|
|
k9s
|
|
krew
|
|
kubectl
|
|
kubevirt
|
|
kubernetes-helm
|
|
pre-commit
|
|
sops
|
|
age
|
|
mqttui
|
|
kustomize
|
|
yq-go
|
|
];
|
|
}
|