mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-22 09:40:47 +03:00
add overlay
This commit is contained in:
parent
85fd85e318
commit
f477ca6041
2 changed files with 6 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
let
|
||||
exports = {
|
||||
nixosModules.age = import ./modules/age.nix;
|
||||
overlay = import ./overlay.nix;
|
||||
};
|
||||
outputs = flake-utils.lib.eachDefaultSystem (system: {
|
||||
packages = nixpkgs.legacyPackages.${system}.callPackage ./default.nix { };
|
||||
|
|
5
overlay.nix
Normal file
5
overlay.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
final: prev:
|
||||
{
|
||||
agenix = prev.callPackage ./pkgs/agenix.nix { };
|
||||
rage = pkgs.callPackage ./pkgs/rage.nix {};
|
||||
}
|
Loading…
Reference in a new issue