diff options
Diffstat (limited to 'nixos/hosts/bin/components')
| -rw-r--r-- | nixos/hosts/bin/components/immich.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nixos/hosts/bin/components/immich.nix b/nixos/hosts/bin/components/immich.nix new file mode 100644 index 0000000..82fd0d3 --- /dev/null +++ b/nixos/hosts/bin/components/immich.nix @@ -0,0 +1,10 @@ +{ + networking.firewall.allowedTCPPorts = [ 2283 ]; + + services.immich = { + enable = true; + host = "10.0.0.1"; + port = 2283; + mediaLocation = "/var/lib/immich"; + }; +} |
