7 lines
128 B
Nix
7 lines
128 B
Nix
|
{ config, pkgs, lib, ... }: {
|
||
|
services.nix-serve = {
|
||
|
enable = true;
|
||
|
secretKeyFile = "/var/cache-priv-key.pem";
|
||
|
};
|
||
|
}
|