os/hosts/ringo/home-controller.nix

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

18 lines
331 B
Nix
Raw Normal View History

2022-08-21 22:53:04 +00:00
{
2023-10-05 22:09:56 +00:00
self,
config,
pkgs,
...
}: {
2022-08-21 22:53:04 +00:00
config = {
age.secrets.home_controller_wireguard.file = "${self}/secrets/home_controller_ringo_wireguard_key.age";
pub-solar.home-controller = {
enable = true;
ownIp = "10.0.1.21";
2023-10-05 22:09:56 +00:00
wireguardPrivateKeyFile = "/run/agenix/home_controller_wireguard";
2022-08-21 22:53:04 +00:00
};
};
}