Basically I want to set a static IP with systemd, but I want to get everything else (read "the routes of the network") via DHCP. This is easily done on macos for example which has the option "use DHCP with static IP address".
If I combine Address with DHCP=yes (as in Using dhcp and static ip on same nic on linux with systemd-networkd) then I get two addresses asigned to the interface, the static one plus the DHCP assigned one. I just want the static one.
If systemd.network's options don't allow for something like this, how would a systemd.service configuration look like that maybe uses dhcpcd or similar to accomplish this?