1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-05 16:17:47 +00:00
sops-nix/default.nix

13 lines
437 B
Nix
Raw Normal View History

2020-07-12 17:18:12 +01:00
{ pkgs ? import <nixpkgs> {} }: let
vendorSha256 = "sha256-O0z+oEffOOZa/bn2gV9onLVbPBHsNDH2yq1CZPi8w58=";
2020-07-12 17:43:23 +01:00
in rec {
2020-07-06 07:30:09 +01:00
sops-init-gpg-key = pkgs.callPackage ./pkgs/sops-init-gpg-key {};
2020-07-12 17:18:12 +01:00
sops-install-secrets = pkgs.callPackage ./pkgs/sops-install-secrets {
inherit vendorSha256;
};
2020-07-06 07:30:09 +01:00
sops-shell-hook = pkgs.callPackage ./pkgs/sops-shell-hook {};
2020-07-12 17:18:12 +01:00
ssh-to-pgp = pkgs.callPackage ./pkgs/ssh-to-pgp {
inherit vendorSha256;
};
2020-07-06 07:30:09 +01:00
}