config/modules/services/immich/default.nix

69 lines
1.7 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;
2024-09-27 23:20:15 +03:00
immich-package = pkgs.pkgs-unstable.immich;
2024-09-29 19:47:40 +03:00
startScript = pkgs.writeShellApplication {
name = "immich-mj";
runtimeInputs = with pkgs; [
sudo
bindfs
util-linux
];
text = ''
${lib.concatLines (
lib.mapAttrsToList (name: srcpath: ''
#mkdir /data/${name}
#bindfs -u ${cfg.bindAsUser} ${srcpath} /data/${name}
'') cfg.bindPaths
)}
#exec sudo -u ${config.services.immich.user} -- ${lib.getExe immich-package}
exec ${lib.getExe immich-package}
'';
};
2024-09-27 15:03:43 +03:00
in
{
options.mj.services.immich = with lib.types; {
enable = lib.mkEnableOption "enable immich";
2024-09-27 20:04:41 +03:00
bindPaths = lib.mkOption { type = attrsOf str; };
bindAsUser = lib.mkOption { type = str; };
2024-09-27 15:03:43 +03:00
};
imports = [ "${nixpkgs-unstable}/nixos/modules/services/web-apps/immich.nix" ];
config = lib.mkIf cfg.enable {
services.immich = {
2024-09-27 23:20:15 +03:00
package = immich-package;
2024-09-27 15:03:43 +03:00
enable = true;
2024-09-27 15:11:54 +03:00
port = myData.ports.immich-server;
2024-09-27 15:03:43 +03:00
};
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
2024-09-27 20:04:41 +03:00
systemd = {
2024-09-27 23:20:15 +03:00
tmpfiles.rules = [ "d /data 0755 root root -" ];
2024-09-27 20:04:41 +03:00
services.immich-server.serviceConfig = {
2024-09-27 23:20:15 +03:00
TemporaryFileSystem = "/data";
PrivateDevices = lib.mkForce false; # /dev/fuse
2024-09-29 19:47:40 +03:00
ProtectHome = lib.mkForce false; # binding /home/motiejus
# testing
PrivateMounts = lib.mkForce false;
ExecStart = lib.mkForce ("!" + (lib.getExe startScript));
2024-09-27 20:04:41 +03:00
};
};
2024-09-27 15:03:43 +03:00
};
}