kaas
This commit is contained in:
parent
5c1e6807b6
commit
cf9dcf2568
12 changed files with 244 additions and 137 deletions
54
clan/interfaces/gateway.nix
Normal file
54
clan/interfaces/gateway.nix
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib) mkOption types;
|
||||
in {
|
||||
options = {
|
||||
services = mkOption {
|
||||
type = types.attrsOf (types.submodule ({name, ...}: {
|
||||
options = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = name;
|
||||
};
|
||||
|
||||
endpoint = mkOption {
|
||||
type = types.submoduleWith {
|
||||
modules = [../types/endpoint.nix];
|
||||
};
|
||||
default = name;
|
||||
};
|
||||
|
||||
# protocol = mkOption {
|
||||
# type = types.str;
|
||||
# default = "http";
|
||||
# };
|
||||
|
||||
# host = mkOption {
|
||||
# type = types.str;
|
||||
# default = "[::1]";
|
||||
# };
|
||||
|
||||
# port = mkOption {
|
||||
# type = types.port;
|
||||
# };
|
||||
};
|
||||
}));
|
||||
default = {};
|
||||
};
|
||||
|
||||
functions = mkOption {
|
||||
type = types.attrsOf (types.submodule ({name, ...}: {
|
||||
options = {
|
||||
name = mkOption {
|
||||
type = types.str;
|
||||
default = name;
|
||||
};
|
||||
|
||||
body = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
};
|
||||
}));
|
||||
default = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue