lol

nixos, dhcpd: make machines assignable

+4 -3
+4 -3
nixos/modules/services/networking/dhcpd.nix
··· 60 60 }; 61 61 }; 62 62 63 - machineOpts = {...}: { 64 - config = { 63 + machineOpts = { ... }: { 64 + 65 + options = { 65 66 66 67 hostName = mkOption { 67 68 type = types.str; ··· 156 157 }; 157 158 158 159 machines = mkOption { 159 - type = types.listOf (types.submodule machineOpts); 160 + type = with types; listOf (submodule machineOpts); 160 161 default = []; 161 162 example = [ 162 163 { hostName = "foo";