renovate-config/shell.nix

17 lines
366 B
Nix
Raw Permalink Normal View History

2024-07-29 20:14:30 -05:00
# 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; [
2024-07-29 21:39:31 -05:00
age
2024-07-29 20:14:30 -05:00
gitleaks
go-task
2024-07-29 21:39:31 -05:00
go-task
lazydocker
2024-07-29 20:14:30 -05:00
pre-commit
sops
];
}