nixos, dhcpd: make machines assignable

This commit is contained in:
Edward Tjörnhammar
2017-02-27 10:52:21 +01:00
parent 136c249e0b
commit fa367c2d02
+3 -2
View File
@@ -61,7 +61,8 @@ 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";