theshire/shell.nix

43 lines
747 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
2024-06-19 09:48:16 -05:00
];
2024-07-08 10:53:12 -05:00
# Possible inputs needed. Keeping here for posterity
# age
# ansible
# cilium-cli
# direnv
# derailed/k9s/k9s
# fluxcd/tap/flux
# go-task/tap/go-task
# helm
# ipcalc
# jq
# kubernetes-cli
# kustomize
# pre-commit
# prettier
# shellcheck
# sops
# stern
# talhelper
# yamllint
# yq
2024-06-19 09:48:16 -05:00
}