Merge pull request #12 from blaggacao/da-overlay

add overlay
This commit is contained in:
Ryan Mulligan 2020-12-30 13:43:18 -08:00 committed by GitHub
commit 37b1d2aa3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -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 { };

4
overlay.nix Normal file
View File

@ -0,0 +1,4 @@
final: prev:
{
agenix = prev.callPackage ./pkgs/agenix.nix { };
}