48 lines
1.4 KiB
Elixir
48 lines
1.4 KiB
Elixir
use Mix.Config
|
|
|
|
# Authorize the device to receive firmware using your public key.
|
|
# See https://hexdocs.pm/nerves_firmware_ssh/readme.html for more information
|
|
# on configuring nerves_firmware_ssh.
|
|
|
|
keys =
|
|
[
|
|
Path.join([System.user_home!(), ".ssh", "id_rsa.pub"]),
|
|
Path.join([System.user_home!(), ".ssh", "id_ecdsa.pub"]),
|
|
Path.join([System.user_home!(), ".ssh", "id_ed25519.pub"])
|
|
]
|
|
|> Enum.filter(&File.exists?/1)
|
|
|
|
if keys == [],
|
|
do:
|
|
Mix.raise("""
|
|
No SSH public keys found in ~/.ssh. An ssh authorized key is needed to
|
|
log into the Nerves device and update firmware on it using ssh.
|
|
See your project's config.exs for this error message.
|
|
""")
|
|
|
|
config :nerves_firmware_ssh,
|
|
authorized_keys: Enum.map(keys, &File.read!/1)
|
|
|
|
# Configure nerves_init_gadget.
|
|
# See https://hexdocs.pm/nerves_init_gadget/readme.html for more information.
|
|
|
|
# Setting the node_name will enable Erlang Distribution.
|
|
# Only enable this for prod if you understand the risks.
|
|
node_name = "esrom"
|
|
|
|
config :nerves_init_gadget,
|
|
ifname: "eth0",
|
|
address_method: :dhcp,
|
|
mdns_domain: "esrom.lan",
|
|
node_name: node_name,
|
|
node_host: :mdns_domain
|
|
|
|
if File.exists?("config/secrets.exs") do
|
|
import_config "secrets.exs"
|
|
end
|
|
|
|
# Import target specific config. This must remain at the bottom
|
|
# of this file so it overrides the configuration defined above.
|
|
# Uncomment to use target specific configurations
|
|
|
|
# import_config "#{Mix.target()}.exs"
|