Refactor Linode configuration and update WireGuard settings
- Renamed SSH match block from 'vps' to 'linode' in jawz.nix for clarity. - Updated IP addresses in toggles.nix and other configuration files to reflect the new Linode setup. - Removed deprecated fail2ban configuration from linode's configuration.nix. - Adjusted WireGuard interface settings to use the correct IP for linode. - Cleaned up hardware configuration by removing unnecessary GRUB loader settings. - Updated secrets management in wireguard.yaml to streamline key handling.
This commit is contained in:
@@ -1,25 +1,16 @@
|
||||
_: {
|
||||
timeZone = "America/Mexico_City";
|
||||
locale = "en_US.UTF-8";
|
||||
wireguard.enable = true;
|
||||
network.enable = true;
|
||||
services = {
|
||||
network.enable = true;
|
||||
wireguard.enable = true;
|
||||
};
|
||||
secureHost = false;
|
||||
interfaces.linode = "eth0";
|
||||
ips = {
|
||||
vps = "51.222.141.104";
|
||||
wg-vps = "10.77.0.1";
|
||||
linode = "51.222.141.104";
|
||||
wg-linode = "10.77.0.1";
|
||||
wg-server = "10.77.0.2";
|
||||
wg-friend1 = "10.8.0.2";
|
||||
wg-friends = "10.8.0.0";
|
||||
};
|
||||
interfaces = {
|
||||
linode = "eth0";
|
||||
};
|
||||
dev = {
|
||||
nix.enable = true;
|
||||
sh.enable = true;
|
||||
};
|
||||
shell = {
|
||||
tools.enable = true;
|
||||
config.enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user