flake/shell.nix
muon ff44539421 Add jami
Nix update
2026-01-25 10:33:30 +00:00

13 lines
257 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
];
};
}