mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 20:43:56 -05:00
10 lines
137 B
Nix
10 lines
137 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.nix-serve = {
|
||
|
enable = true;
|
||
|
secretKeyFile = "/var/cache-priv-key.pem";
|
||
|
};
|
||
|
}
|
||
|
|