os/hosts/biolimo/networking.nix

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

21 lines
413 B
Nix
Raw Normal View History

2023-10-19 18:55:56 +00:00
{
flake,
config,
pkgs,
lib,
2023-10-19 18:55:56 +00:00
...
}: {
networking.hostName = "biolimo";
networking.networkmanager.wifi.backend = "wpa_supplicant";
2023-10-19 18:55:56 +00:00
age.secrets.wg-private-key.file = "${flake.self}/secrets/wg-private-biolimo.age";
pub-solar.wireguard-client = {
ownIPs = [
"10.13.12.6/32"
"fd00:b12f:acab:1312:acab:6::/96"
];
wireguardPrivateKeyFile = "/run/agenix/wg-private-key";
2023-10-19 18:55:56 +00:00
};
}