difftreelog
fix missing pkgs arg
in: trunk
1 file changed
modules/fleet/meta.nixdiffbeforeafterboth3 host = with types; {3 host = with types; {4 options = {4 options = {5 modules = mkOption {5 modules = mkOption {6 type = listOf anything;6 type = listOf (mkOptionType {7 name = "submodule";8 inherit (submodule { }) check;9 merge = lib.options.mergeOneOption;10 description = "Nixos modules";11 });7 description = "List of nixos modules";12 description = "List of nixos modules";8 default = [ ];13 default = [ ];9 };14 };26 description = "Configurations of individual hosts";31 description = "Configurations of individual hosts";27 };32 };28 globalModules = mkOption {33 globalModules = mkOption {29 type = listOf anything;34 type = listOf (mkOptionType {35 name = "submodule";36 inherit (submodule { }) check;37 merge = lib.options.mergeOneOption;38 description = "Nixos modules";39 });30 description = "Modules, which should be added to every system";40 description = "Modules, which should be added to every system";31 default = [ ];41 default = [ ];32 };42 };