mochi/shell.nix

17 lines
363 B
Nix
Raw Permalink Normal View History

2024-06-20 08:59:56 -05:00
# Shell for bootstrapping flake-enabled nix and home-manager
{ pkgs ? import <nixpkgs> {} }:
2024-06-20 08:59:56 -05:00
pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [
2024-07-27 14:36:36 -05:00
cachix
2024-06-20 08:59:56 -05:00
git
2024-07-27 14:36:36 -05:00
gitleaks
go-task
2024-06-20 08:59:56 -05:00
pre-commit
2024-07-27 14:36:36 -05:00
sops
statix
2024-06-20 08:59:56 -05:00
];
}