General codestyle changes
This commit is contained in:
@ -1,11 +1,8 @@
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
lib,
|
||||
mylib,
|
||||
pkgs,
|
||||
...
|
||||
}: rec {
|
||||
}: {
|
||||
imports = [
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
@ -42,37 +39,33 @@
|
||||
};
|
||||
|
||||
wireguard-tunnels = {
|
||||
wg0-de-115 = (
|
||||
wg0-de-115 =
|
||||
mylib.networking.mkWireguardService
|
||||
"wg0-de-115"
|
||||
"proton-de-115.key"
|
||||
"9+CorlxrTsQR7qjIOVKsEkk8Z7UUS5WT3R1ccF7a0ic="
|
||||
"194.126.177.14"
|
||||
);
|
||||
"194.126.177.14";
|
||||
|
||||
wg0-lu-16 = (
|
||||
wg0-lu-16 =
|
||||
mylib.networking.mkWireguardService
|
||||
"wg0-lu-16"
|
||||
"proton-lu-16.key"
|
||||
"asu9KtQoZ3iKwELsDTgjPEiFNcD1XtgGgy3O4CZFg2w="
|
||||
"92.223.89.133"
|
||||
);
|
||||
"92.223.89.133";
|
||||
|
||||
wg0-kh-8 = (
|
||||
wg0-kh-8 =
|
||||
mylib.networking.mkWireguardService
|
||||
"wg0-kh-8"
|
||||
"proton-kh-8.key"
|
||||
"D4M0O60wCBf1nYWOmXRfK7IpgG7VBBwQLeWVFLIqFG4="
|
||||
"188.215.235.82"
|
||||
);
|
||||
"188.215.235.82";
|
||||
|
||||
wg0-ch-70 = (
|
||||
wg0-ch-70 =
|
||||
mylib.networking.mkWireguardService
|
||||
"wg0-ch-70"
|
||||
"proton-ch-70.key"
|
||||
"17I34jHOMcmI7LKBqxosTfLgwGjO5OKApLcRSPlyymM="
|
||||
"185.159.157.13"
|
||||
);
|
||||
"185.159.157.13";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user