mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 12:16:32 +03:00
16 lines
208 B
Nix
16 lines
208 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
services.mealie = {
|
|
enable = true;
|
|
listenAddress = "0.0.0.0";
|
|
port = 9000;
|
|
database.createLocally = true;
|
|
settings = {
|
|
ALLOW_SIGNUP = "false";
|
|
};
|
|
};
|
|
}
|