os/hosts/pie/networking.nix

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

43 lines
949 B
Nix
Raw Normal View History

{
flake,
config,
pkgs,
lib,
...
}: {
2023-11-08 17:52:09 +00:00
networking.useDHCP = false;
networking.hostId = "34234773";
networking.hostName = "pie";
networking.defaultGateway = {
address = "192.168.178.1";
interface = "enabcm6e4ei0";
};
2023-10-24 13:54:18 +00:00
networking.interfaces.enabcm6e4ei0 = {
ipv4.addresses = [
{ address = "192.168.178.2"; prefixLength = 32; }
];
ipv6.addresses = [
{ address = "2a02:908:5b1:e3c0:2::"; prefixLength = 128; }
2023-11-13 14:48:05 +00:00
{ address = "fe80:b12f:acab:1312:acab:2::"; prefixLength = 128; }
];
};
2024-02-16 10:18:35 +00:00
networking.hosts = {
"192.168.178.3" = [ "droppie-initrd.b12f.io" ];
};
2023-12-05 21:42:23 +00:00
services.openssh.allowSFTP = true;
age.secrets.wg-private-key.file = "${flake.self}/secrets/wg-private-pie.age";
2024-02-12 15:46:46 +00:00
pub-solar.wireguard.private = {
2024-02-06 08:44:41 +00:00
useDNS = false;
ownIPs = [
"10.13.12.2/32"
"fd00:b12f:acab:1312:acab:2::/96"
];
2024-02-12 15:46:46 +00:00
privateKeyFile = config.age.secrets.wg-private-key.path;
};
}