13 lines
223 B
Nix
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;
|
|
};
|
|
}
|