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