nix-config/modules/TLMS/general-options.nix

19 lines
349 B
Nix

{ lib, ... }:
with lib; {
options = {
deployment-TLMS.systemNumber = mkOption {
type = types.int;
default = 0;
description = "number of the system";
};
deployment-TLMS.domain = mkOption {
type = types.str;
default = "dvb.solutions";
description = "domain the server is running on";
};
};
}