flake/shell.nix
2025-05-24 09:19:56 +00:00

14 lines
266 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
nvfetcher
];
};
}