Initial checkin

This commit is contained in:
2023-08-28 17:54:22 -07:00
commit 86fd95b688
3 changed files with 420 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
description = "Authentik running in a container";
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.05";
arion.url = "github:hercules-ci/arion";
};
outputs = { self, nixpkgs, arion, ... }: {
nixosModules = rec {
default = authentikContainer;
authentikContainer = { ... }: {
imports = [ arion.nixosModules.arion ./authentik-container.nix ];
};
};
};
}