mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-nixos-config.git
synced 2024-11-03 15:37:19 +00:00
14 lines
210 B
Nix
14 lines
210 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services = {
|
|
memcached = {
|
|
enable = true;
|
|
user = "memcached";
|
|
listen = "127.0.0.1";
|
|
port = 11211;
|
|
maxMemory = 64;
|
|
maxConnections = 1024;
|
|
};
|
|
};
|
|
}
|