config/modules/services/immich/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2024-09-27 15:03:43 +03:00
{
config,
lib,
pkgs,
myData,
nixpkgs-unstable,
...
}:
let
cfg = config.mj.services.immich;
in
{
options.mj.services.immich = with lib.types; {
enable = lib.mkEnableOption "enable immich";
paths = lib.mkOption { type = attrsOf str; };
};
imports = [ "${nixpkgs-unstable}/nixos/modules/services/web-apps/immich.nix" ];
config = lib.mkIf cfg.enable {
services.immich = {
enable = true;
2024-09-27 15:11:54 +03:00
port = myData.ports.immich-server;
2024-09-27 15:03:43 +03:00
package = pkgs.pkgs-unstable.immich;
};
2024-09-27 15:56:20 +03:00
services.caddy.virtualHosts."photos2.jakstys.lt:80".extraConfig = ''
2024-09-27 15:46:44 +03:00
@denied not remote_ip ${myData.subnets.tailscale.cidr}
2024-09-27 16:01:47 +03:00
reverse_proxy localhost:${toString myData.ports.immich-server}
2024-09-27 15:46:44 +03:00
'';
2024-09-27 15:03:43 +03:00
#systemd = {
# #tmpfiles.rules = [ "d /var/cache/immich/userdata 0700 immich immich -" ];
# services.immich-server.serviceConfig = {
# #ProtectHome = lib.mkForce "tmpfs";
# #CacheDirectory = "immich";
# #BindPaths = lib.mapAttrsToList (
# # name: srcpath: "${srcpath}:/var/cache/immich/userdata/${name}"
# #) cfg.paths;
# };
#};
2024-09-27 15:03:43 +03:00
};
}