theshire/shell.nix

17 lines
359 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; [
git
go-task
sops
pre-commit
gitleaks
k9s
kubectl
2024-06-19 09:48:16 -05:00
];
}