summaryrefslogtreecommitdiff
path: root/adonis/network.nix
diff options
context:
space:
mode:
Diffstat (limited to 'adonis/network.nix')
-rw-r--r--adonis/network.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/adonis/network.nix b/adonis/network.nix
new file mode 100644
index 0000000..df24aac
--- /dev/null
+++ b/adonis/network.nix
@@ -0,0 +1,20 @@
+{
+ networking = {
+ hostName = "adonis";
+ interfaces.ens3.ipv6 = {
+ addresses = [
+ {
+ address = "2a0a:4cc0:c1:cf00::10";
+ prefixLength = 64;
+ }
+ ];
+ routes = [
+ {
+ address = "::";
+ via = "fe80::1";
+ prefixLength = 0;
+ }
+ ];
+ };
+ };
+}