git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
33 lines
907 B
Nix
33 lines
907 B
Nix
{ config, lib, ...}:
|
|
|
|
let
|
|
inherit (lib) concatStringsSep mkOption types optionalString;
|
|
|
|
in {
|
|
|
|
mkCellServDB = cellName: db: ''
|
|
>${cellName}
|
|
'' + (concatStringsSep "\n" (map (dbm: optionalString (dbm.ip != "" && dbm.dnsname != "") "${dbm.ip} #${dbm.dnsname}")
|
|
db))
|
|
+ "\n";
|
|
|
|
# CellServDB configuration type
|
|
cellServDBConfig = {
|
|
ip = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "1.2.3.4";
|
|
description = "IP Address of a database server";
|
|
};
|
|
dnsname = mkOption {
|
|
type = types.str;
|
|
default = "";
|
|
example = "afs.example.org";
|
|
description = "DNS full-qualified domain name of a database server";
|
|
};
|
|
};
|
|
|
|
openafsMod = config.services.openafsClient.packages.module;
|
|
openafsBin = config.services.openafsClient.packages.programs;
|
|
openafsSrv = config.services.openafsServer.package;
|
|
}
|