flake/shell.nix
2026-03-20 14:44:24 +00:00

18 lines
318 B
Nix

{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; [
nix
git
sops
age
nvfetcher
nvft
];
};
}