2024-05-18 10:34:43 -05:00
|
|
|
# Shell for bootstrapping flake-enabled nix and home-manager
|
2024-08-07 19:40:21 -05:00
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
2024-05-18 10:34:43 -05:00
|
|
|
pkgs.mkShell {
|
|
|
|
# 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
|
2024-08-07 19:40:21 -05:00
|
|
|
statix
|
2024-05-18 10:34:43 -05:00
|
|
|
];
|
|
|
|
}
|