Skip to content

Commit

Permalink
default.nix: don't use rec
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Nov 24, 2024
1 parent 85c6a17 commit 6745856
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 6745856

Please sign in to comment.