From db2158f35ede127bedbe465887b15f4d55ffacd4 Mon Sep 17 00:00:00 2001 From: lassulus Date: Wed, 12 Jan 2022 19:53:05 +0100 Subject: l prism.r: add ipv6 --- lass/1systems/prism/physical.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lass/1systems') diff --git a/lass/1systems/prism/physical.nix b/lass/1systems/prism/physical.nix index 26ecd1cda..151cfbf41 100644 --- a/lass/1systems/prism/physical.nix +++ b/lass/1systems/prism/physical.nix @@ -79,9 +79,11 @@ boot.loader.grub.devices = [ "/dev/sda" "/dev/sdb" ]; boot.kernelParams = [ "net.ifnames=0" ]; + networking.dhcpcd.enable = false; networking = { hostId = "2283aaae"; defaultGateway = "95.216.1.129"; + defaultGateway6 = { address = "fe80::1"; interface = "eth0"; }; # Use google's public DNS server nameservers = [ "8.8.8.8" ]; interfaces.eth0.ipv4.addresses = [ @@ -94,5 +96,11 @@ prefixLength = 26; } ]; + interfaces.eth0.ipv6.addresses = [ + { + address = "2a01:4f9:2a:1e9::1"; + prefixLength = 64; + } + ]; }; } -- cgit v1.2.3 From 31fc5a95c735ab3b9b832d407195e422c07cd4c0 Mon Sep 17 00:00:00 2001 From: lassulus Date: Wed, 26 Jan 2022 16:41:59 +0100 Subject: l prism.r: add fysiirc github bridge --- lass/1systems/prism/config.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'lass/1systems') diff --git a/lass/1systems/prism/config.nix b/lass/1systems/prism/config.nix index c92a239f9..a082ea623 100644 --- a/lass/1systems/prism/config.nix +++ b/lass/1systems/prism/config.nix @@ -123,6 +123,7 @@ with import ; + { services.tor = { enable = true; -- cgit v1.2.3