lol

nixos, dhcpd: make machines assignable

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