nix/modules/services/download-pod.nix
2024-06-27 15:31:12 +02:00

15 lines
245 B
Nix

{ config, lib, ... }:
let
cfg = config.download-pod;
in
{
options.download-pod = {
enable = lib.mkEnableOption "Enable the download searcher stack";
};
config = lib.mkIf cfg.enable {
oci-containers.pods.download = { };
};
}