mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-25 22:13:55 +01:00
beleth: gateway gaming frotting uwu uwu :3
This commit is contained in:
parent
e072028205
commit
d597b2abdb
|
@ -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
|
||||||
|
|
|
@ -5,24 +5,34 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [./wireguard.nix];
|
imports = [./wireguard.nix];
|
||||||
networking.interfaces = {
|
networking = {
|
||||||
enp0s31f6 = {
|
interface = {
|
||||||
ipv4 = {
|
enp0s31f6 = {
|
||||||
adresses = [
|
ipv4 = {
|
||||||
{
|
adresses = [
|
||||||
address = "88.99.90.90";
|
{
|
||||||
prefixLength = 26;
|
address = "88.99.90.90";
|
||||||
}
|
prefixLength = 26;
|
||||||
];
|
}
|
||||||
};
|
];
|
||||||
ipv6 = {
|
};
|
||||||
adresses = [
|
ipv6 = {
|
||||||
{
|
adresses = [
|
||||||
address = "2a01:4f8:10a:1aab::2";
|
{
|
||||||
prefixLength = 80;
|
address = "2a01:4f8:10a:1aab::2";
|
||||||
}
|
prefixLength = 80;
|
||||||
];
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
defaultGateway = {
|
||||||
|
interface = "enp0s31f6";
|
||||||
|
address = "88.99.90.65";
|
||||||
|
};
|
||||||
|
defaultGateway6 = {
|
||||||
|
interface = "enp0s31f6";
|
||||||
|
address = "fe80::1";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue