83 lines
3 KiB
Nix
83 lines
3 KiB
Nix
{ inputs, pkgs, lib, hosts, config, ... }:
|
|
let
|
|
inherit (config.networking) hostName;
|
|
inherit (inputs.depot.packages.${pkgs.system}) hyprspace;
|
|
hyprspaceCapableNodes = lib.filterAttrs (_: host: host ? hypr) hosts;
|
|
peersFormatted = builtins.mapAttrs (_: x: { "${x.hypr.addr}".id = x.hypr.id; }) hyprspaceCapableNodes;
|
|
peersFiltered = lib.filterAttrs (name: _: name != hostName) peersFormatted;
|
|
peers = lib.foldAttrs (n: _: n) null (builtins.attrValues peersFiltered);
|
|
peerList = lib.foldAttrs (n: _: n) null (builtins.attrValues peersFiltered);
|
|
myNode = hosts.${hostName};
|
|
listenPort = myNode.hypr.listenPort or 8001;
|
|
|
|
routes' = map (x: lib.genAttrs (x.hypr.routes or []) (_: { ip = x.hypr.addr; })) (builtins.attrValues hyprspaceCapableNodes);
|
|
routes = builtins.foldl' (x: y: x // y) {} (lib.flatten routes');
|
|
|
|
interfaceConfig = pkgs.writeText "hyprspace.yml" (builtins.toJSON {
|
|
interface = {
|
|
name = "hyprspace";
|
|
listen_port = listenPort;
|
|
inherit (myNode.hypr) id;
|
|
address = "${myNode.hypr.addr}/24";
|
|
private_key = "@HYPRSPACEPRIVATEKEY@";
|
|
};
|
|
peers = peerList;
|
|
inherit routes;
|
|
});
|
|
|
|
privateKeyFile = config.age.secrets.hyprspace-key.path;
|
|
runConfig = "/run/hyprspace.yml";
|
|
in {
|
|
networking.hosts = lib.mapAttrs' (k: v: lib.nameValuePair (v.hypr.addr) ([k "${k}.hypr"])) hyprspaceCapableNodes;
|
|
age.secrets.hyprspace-key = {
|
|
file = ../../secrets/hyprspace-key- + "${hostName}.age";
|
|
mode = "0400";
|
|
};
|
|
age.secrets.ipfs-swarm-key = {
|
|
file = ../../secrets/ipfs-swarm-key.age;
|
|
mode = "0400";
|
|
};
|
|
systemd.services.hyprspace = {
|
|
enable = true;
|
|
wantedBy = [ "multi-user.target" ];
|
|
wants = [ "network-online.target" ];
|
|
after = [ "network-online.target" ];
|
|
preStart = ''
|
|
test -e ${runConfig} && rm ${runConfig}
|
|
cp ${interfaceConfig} ${runConfig}
|
|
chmod 0600 ${runConfig}
|
|
${pkgs.replace-secret}/bin/replace-secret '@HYPRSPACEPRIVATEKEY@' "${privateKeyFile}" ${runConfig}
|
|
chmod 0400 ${runConfig}
|
|
'';
|
|
environment = {
|
|
HYPRSPACE_SWARM_KEY = config.age.secrets.ipfs-swarm-key.path;
|
|
} // (lib.optionalAttrs config.services.ipfs.enable {
|
|
HYPRSPACE_IPFS_API = config.services.ipfs.apiAddress;
|
|
});
|
|
serviceConfig = {
|
|
Restart = "on-failure";
|
|
RestartSec = "5s";
|
|
ExecStart = "${hyprspace}/bin/hyprspace up hyprspace -f -c ${runConfig}";
|
|
ExecStop = "${hyprspace}/bin/hyprspace down hyprspace -c ${runConfig}";
|
|
ExecReload = "${pkgs.coreutils}/bin/kill -USR1 $MAINPID";
|
|
};
|
|
};
|
|
networking.firewall = {
|
|
allowedTCPPorts = [ listenPort ];
|
|
allowedUDPPorts = [ listenPort ];
|
|
trustedInterfaces = [ "hyprspace" ];
|
|
};
|
|
networking.networkmanager.dispatcherScripts = [{
|
|
source = pkgs.writeShellScript "hyprspace-reconnect.sh" ''
|
|
[[ "$2" != "up" ]] && exit 0
|
|
PATH=${pkgs.systemd}/bin:$PATH
|
|
case $1 in
|
|
wl*|en*)
|
|
systemctl reload-or-restart --no-block hyprspace.service;;
|
|
esac
|
|
exit 0
|
|
'';
|
|
type = "basic";
|
|
}];
|
|
}
|
|
|