infra/nix/modules/wanderllama/attic.nix
2026-01-05 23:09:19 +01:00

13 lines
223 B
Nix

{ lib, config, pkgs, ... }:
with lib;
let cfg = config.wanderllama.attic;
in {
options.wanderllama.attic.port = mkOption {
type = lib.types.int;
description = "the atticd cache port";
example = 4321;
};
}