@msimon360 you have things mis ordered
Inside config:{} are the properties TO the module
The rest are to MagicMirror
module: “weather”,
position: “top_right”,
order: “1”,
header: “Our Weather Station”,
config: {
weatherProvider: “pws”,
stationId: “KTXFARME145”,
apiKey: “xxxx”,
type: “current”
},
disabled: false,
label: “instance 1”,
hiddenOnStartup: false,
configDeepMerge: false,
animateIn: “none”,
animateOut: “none”,
index: 0
},
{
module: “weather”,
position: “top_right”,
order: “2”,
header: “Weather Forecast”,
config: {
weatherProvider: “weathergov”,
type: “forecast”,
lat: 33.173,
lon: -96.332,
colored: true,
fade: false,
fadePoint: “1”,
maxEntries: “7”,
maxNumberOfDays: “7”,
},
disabled: false,
label: “instance 2”,
hiddenOnStartup: false,
configDeepMerge: false,
animateIn: “none”,
animateOut: “none”,
index: 1
},