nix-config/modules/dump-dvb/general-options.nix
Grigory Shipunov a3a5d0652c
Move deployment-related options to separate attrset
Since we factored out deployment-independent options to separate flake
the options that are left in this flake are still using the same
namespace. This change renames the option attrset local to this flake.
2022-10-02 22:22:20 +02:00

19 lines
347 B
Nix

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