nixos, dhcpd: make machines assignable
This commit is contained in:
parent
136c249e0b
commit
fa367c2d02
@ -60,8 +60,9 @@ let
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
machineOpts = {...}: {
|
machineOpts = { ... }: {
|
||||||
config = {
|
|
||||||
|
options = {
|
||||||
|
|
||||||
hostName = mkOption {
|
hostName = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
@ -156,7 +157,7 @@ let
|
|||||||
};
|
};
|
||||||
|
|
||||||
machines = mkOption {
|
machines = mkOption {
|
||||||
type = types.listOf (types.submodule machineOpts);
|
type = with types; listOf (submodule machineOpts);
|
||||||
default = [];
|
default = [];
|
||||||
example = [
|
example = [
|
||||||
{ hostName = "foo";
|
{ hostName = "foo";
|
||||||
|
Loading…
Reference in New Issue
Block a user