nix-config/shell.nix
lightly-toasted bd9cb2afff feat: add git-crypt
- Set up git-crypt for encrypted secrets on y2q
2025-12-06 21:47:22 +09:00

11 lines
140 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
nix
home-manager
git
sops
git-crypt
];
}