mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 17:50:48 +03:00
07ce686870
* age limits the number of recipients to 20 * the latest release of rage (0.4.0) doesn't work with ssh-rsa keys
13 lines
410 B
Nix
13 lines
410 B
Nix
{
|
|
description = "Secret management with age";
|
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
{
|
|
nixosModules.age = import ./modules/age.nix;
|
|
packages = nixpkgs.legacyPackages.${system}.callPackage ./default.nix {};
|
|
defaultPackage = self.packages.${system}.agenix;
|
|
});
|
|
}
|