Simon Bruder
959f7be3d0
It adds a bit of latency (and is definitely not the best solution in theory), but finally allows dropping IPv6 NAT and it works within the constraits my home network has to live in.
14 lines
224 B
Nix
14 lines
224 B
Nix
# SPDX-FileCopyrightText: 2020-2024 Simon Bruder <simon@sbruder.de>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
{
|
|
imports = [
|
|
./he.nix
|
|
./home.nix
|
|
./support.nix
|
|
];
|
|
|
|
networking.wireguard.enable = true;
|
|
}
|