os/hosts/droppie/networking.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
690 B
Nix
Raw Normal View History

2023-10-19 18:55:56 +00:00
{
flake,
config,
pkgs,
2023-11-08 00:16:38 +00:00
lib,
2023-10-19 18:55:56 +00:00
...
}: {
networking.hostName = "droppie";
networking.interfaces.enp2s0f0.useDHCP = true;
networking.interfaces.enp2s0f1.useDHCP = true;
networking.interfaces.enp2s0f0 = {
2023-11-18 20:44:51 +00:00
ipv6.addresses = [ { address = "2a02:908:5b1:e3c0:3::"; prefixLength = 64; } ];
2023-11-05 18:21:28 +00:00
};
age.secrets.wg-private-key.file = "${flake.self}/secrets/wg-private-droppie.age";
2023-10-19 18:55:56 +00:00
# Allow pub.solar restic backups
services.openssh.allowSFTP = true;
services.openssh.openFirewall = true;
2023-11-05 18:21:28 +00:00
pub-solar.wireguard-client = {
ownIPs = [
"10.13.12.3/32"
2023-11-05 18:21:28 +00:00
"fd00:b12f:acab:1312:acab:3::/96"
];
wireguardPrivateKeyFile = "/run/agenix/wg-private-key";
2023-10-19 18:55:56 +00:00
};
}