Initial checkin

This commit is contained in:
2024-02-07 14:09:35 -08:00
commit 792b11846c
2 changed files with 116 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
description = "Immich running in a container";
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
arion.url = "github:hercules-ci/arion";
};
outputs = { self, nixpkgs, arion, ... }: {
nixosModules = rec {
default = immichContainer;
immichContainer = { ... }: {
imports = [ arion.nixosModules.arion ./immich-container.nix ];
};
};
};
}