flake/shell.nix
2025-01-17 20:46:50 +00:00

13 lines
250 B
Nix

{ pkgs ? import <nixpkgs> { }, ... }: {
default = pkgs.mkShell {
NIX_CONFIG =
"extra-experimental-features = nix-command flakes ca-derivations";
nativeBuildInputs = with pkgs; [
nix
git
sops
age
];
};
}