2023-06-13 23:05:35 +02:00
|
|
|
{ inputs, ... }:
|
|
|
|
{
|
|
|
|
flake.nixngConfigurations.heisenbridge = inputs.nixng.nglib.makeSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
name = "heisenbridge";
|
|
|
|
inherit (inputs) nixpkgs;
|
|
|
|
config =
|
|
|
|
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib)
|
2023-10-07 20:25:38 +02:00
|
|
|
getExe';
|
2023-06-13 23:05:35 +02:00
|
|
|
in
|
|
|
|
{
|
|
|
|
dumb-init = {
|
|
|
|
enable = true;
|
|
|
|
type.services = { };
|
|
|
|
};
|
|
|
|
|
|
|
|
init.services.heisenbridge = {
|
|
|
|
enabled = true;
|
|
|
|
# heisenbridge needs to retry the connection and task restarting does not work currently
|
|
|
|
shutdownOnExit = false;
|
|
|
|
script = pkgs.writeShellScript "heisenbridge" ''
|
|
|
|
REGISTRATION_FILE="/var/lib/registrations/heisenbridge.yaml"
|
|
|
|
|
2023-10-07 20:25:38 +02:00
|
|
|
${getExe' pkgs.heisenbridge "heisenbridge"} 'https://matrix.redalder.org/' \
|
2023-06-13 23:05:35 +02:00
|
|
|
-c "$REGISTRATION_FILE" \
|
|
|
|
$([ -e "$REGISTRATION_FILE" ] || echo "--generate") \
|
|
|
|
-l 127.0.0.1 \
|
|
|
|
-p 9898 \
|
|
|
|
-o @magic_rb:matrix.redalder.org
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|