chore: first commit

This commit is contained in:
Clément Désiles
2025-07-25 20:23:54 +02:00
parent 5c4016357f
commit c612cc7839
88 changed files with 3255 additions and 0 deletions
@@ -0,0 +1,9 @@
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The primary network interface
allow-hotplug {{ interface.name }}
iface {{ interface.name }} inet dhcp
# This is an autoconfigured IPv6 interface
iface {{ interface.name }} inet6 auto
@@ -0,0 +1,9 @@
[Match]
Name={{ interface.name }}
[Network]
Address={{ interface.ipv4.address }}
Gateway={{ interface.ipv4.gateway }}
{% for dns in interface.ipv4.nameservers %}
DNS={{ dns }}
{% endfor %}