10 lines
163 B
Nix
10 lines
163 B
Nix
{ lib, modulesPath, ... }:
|
|
|
|
{
|
|
services.immich = {
|
|
enable = true;
|
|
# default port: 3001
|
|
machine-learning.enable = true;
|
|
host = "localhost";
|
|
};
|
|
}
|