mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 13:43:56 -05:00
14 lines
296 B
Nix
14 lines
296 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
options = {
|
|
homeLab.binaryCache.enable = lib.mkEnableOption "Enables nixpkgs cache.";
|
|
};
|
|
|
|
config = lib.mkIf config.homeLab.binaryCache.enable {
|
|
services.nix-serve = {
|
|
enable = true;
|
|
secretKeyFile = "/var/cache-priv-key.pem";
|
|
};
|
|
};
|
|
}
|