1

General codestyle changes

This commit is contained in:
2024-06-03 20:37:24 +02:00
parent 26ea3f3f00
commit 1df9bf4011
9 changed files with 214 additions and 272 deletions

View File

@ -1,11 +1,4 @@
{
inputs,
config,
lib,
mylib,
pkgs,
...
}: rec {
{mylib, ...}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
@ -15,21 +8,19 @@
modules = {
systemd-networkd = {
wireguard-tunnels = {
wg0-de-74 = (
wg0-de-74 =
mylib.networking.mkWireguardService
"wg0-de-74"
"proton-de-74.key"
"fvHmPj3wAKolN80+/KJ3a/DFjMToCsr3iPGwX8+og1g="
"194.126.177.7"
);
"194.126.177.7";
wg0-lu-6 = (
wg0-lu-6 =
mylib.networking.mkWireguardService
"wg0-lu-6"
"proton-lu-6.key"
"EAZS8FTE2sXm8NFD8ViqcO5PMzvnyIHD1ScxX8UxIzE="
"92.223.89.141"
);
"92.223.89.141";
};
};
};