add agenix to shell

This commit is contained in:
Julien Malka 2024-04-05 19:29:45 +02:00
parent 316acea052
commit 3ee42a6bb1
Signed by: Luj
GPG key ID: 6FC74C847011FD83

View file

@ -2,9 +2,10 @@ let
inputs = import ./deps;
pkgs = import inputs.nixpkgs { };
nixos-anywhere = pkgs.callPackage "${inputs.nixos-anywhere}/src/default.nix" { };
agenix = pkgs.callPackage "${inputs.agenix}/pkgs/agenix.nix" { };
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ colmena npins nixos-anywhere ];
nativeBuildInputs = with pkgs; [ colmena npins nixos-anywhere agenix ];
}