beleth: gateway gaming frotting uwu uwu :3

This commit is contained in:
xqtc161 2024-06-09 20:56:12 +02:00
parent e072028205
commit d597b2abdb
2 changed files with 28 additions and 17 deletions

View file

@ -14,6 +14,7 @@ with lib; {
./transmission.nix ./transmission.nix
./lanrarari.nix ./lanrarari.nix
./uptime.nix ./uptime.nix
./networking.nix
./git.nix ./git.nix
./docker.nix ./docker.nix
../../gc.nix ../../gc.nix

View file

@ -5,7 +5,8 @@
... ...
}: { }: {
imports = [./wireguard.nix]; imports = [./wireguard.nix];
networking.interfaces = { networking = {
interface = {
enp0s31f6 = { enp0s31f6 = {
ipv4 = { ipv4 = {
adresses = [ adresses = [
@ -25,4 +26,13 @@
}; };
}; };
}; };
defaultGateway = {
interface = "enp0s31f6";
address = "88.99.90.65";
};
defaultGateway6 = {
interface = "enp0s31f6";
address = "fe80::1";
};
};
} }