Can the default-configuration file be edited?

Hello group

I am curious if the default-configuration file can be edited and re-loaded to routers as need as I would like the default IP to be 192.168.100.1...

script: #| IP address 192.168.100.1/24 is on ether1
#| ether1 is enabled

:global action

these commands are executed after installation or configuration reset

:if ($action = "apply") do={
:delay 5s
/ip address add address=192.168.100.1/24 interface=ether1 comment="default configuration"
}

these commands are executed if user requests to remove default configuration

:if ($action = "revert") do={
/ip address {
:local o [find address="192.168.100.1/24" interface="ether1" comment="default configuration"]
:if ([:len $o] != 0) do={ remove $o }
}
}

Thank you

Regards

When doing Netinstall for the first time, you are given the opportunity to specify a default config RSC file. This file will be loaded later also when you do “/system reset”.