os/hosts/chocolatebar/networking.nix

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

19 lines
346 B
Nix
Raw Normal View History

2023-10-19 18:55:56 +00:00
{
flake,
config,
pkgs,
...
}: {
config = {
age.secrets.wg-private-key.file = "${flake.self}/secrets/wg-private-chocolatebar.age";
pub-solar.wireguard-client = {
ownIPs = [
"10.0.1.5/32"
"fd00:b12f:acab:1312:acab:5::/96"
];
2023-10-19 18:55:56 +00:00
wireguardPrivateKeyFile = "/run/agenix/wg-private-key";
};
};
}