diff options
| author | toufic ar <contact@toufy.me> | 2026-04-22 14:08:19 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-04-22 14:08:19 +0300 |
| commit | c7349e466fef7ecff5a46b1d0c819975a6bdcb8c (patch) | |
| tree | 2a3fc53016ae4d0b31d7583171bd4b8e60f4cc17 /adonis/network.nix | |
| download | servers-c7349e466fef7ecff5a46b1d0c819975a6bdcb8c.tar.gz servers-c7349e466fef7ecff5a46b1d0c819975a6bdcb8c.zip | |
initial commit
Diffstat (limited to 'adonis/network.nix')
| -rw-r--r-- | adonis/network.nix | 20 |
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; + } + ]; + }; + }; +} |
