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