mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-12-26 14:14:58 +08:00
default.nix: don't use rec
This commit is contained in:
parent
915b7c3c0e
commit
b93e7c42ee
1 changed files with 4 additions and 4 deletions
|
|
@ -3,13 +3,13 @@
|
|||
vendorHash ? "sha256-xHScXL3i2oxJSJsvOC+KqLCA5Psu3ht7DQNrh0rB1rA=",
|
||||
}:
|
||||
let
|
||||
sops-init-gpg-key = pkgs.callPackage ./pkgs/sops-init-gpg-key { };
|
||||
in
|
||||
{
|
||||
sops-install-secrets = pkgs.callPackage ./pkgs/sops-install-secrets {
|
||||
inherit vendorHash;
|
||||
};
|
||||
in
|
||||
rec {
|
||||
inherit sops-install-secrets;
|
||||
sops-init-gpg-key = pkgs.callPackage ./pkgs/sops-init-gpg-key { };
|
||||
inherit sops-init-gpg-key;
|
||||
default = sops-init-gpg-key;
|
||||
|
||||
sops-import-keys-hook = pkgs.callPackage ./pkgs/sops-import-keys-hook { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue