This repository has been archived on 2025-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
cert-manager-webhook-dnsimple/shell.nix

16 lines
352 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; [
git
gitleaks
go-task
pre-commit
sops
gnumake
];
}