Add vendor fetch

This commit is contained in:
muon 2026-03-20 14:44:24 +00:00
parent bf93912b39
commit 2d02ac206f
10 changed files with 360 additions and 46 deletions

View file

@ -1,4 +1,8 @@
{pkgs ? import <nixpkgs> {}, ...}: {
{pkgs ? import <nixpkgs> {}, ...}:
let
nvft = pkgs.callPackage ./pkgs/nvft {};
in
{
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
nativeBuildInputs = with pkgs; [
@ -8,6 +12,7 @@
sops
age
nvfetcher
nvft
];
};
}