os/hosts/chocolatebar/networking.nix

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

20 lines
364 B
Nix
Raw Normal View History

2023-10-19 18:55:56 +00:00
{
flake,
config,
pkgs,
2023-11-08 17:52:09 +00:00
lib,
2023-10-19 18:55:56 +00:00
...
}: {
networking.hostName = "chocolatebar";
2023-10-19 18:55:56 +00:00
age.secrets.wg-private-key.file = "${flake.self}/secrets/wg-private-chocolatebar.age";
2024-02-12 15:46:46 +00:00
pub-solar.wireguard.private = {
ownIPs = [
"10.13.12.5/32"
"fd00:b12f:acab:1312:acab:5::/96"
];
2024-02-12 15:46:46 +00:00
privateKeyFile = config.age.secrets.wg-private-key.path;
2023-10-19 18:55:56 +00:00
};
}