Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.gobgpd;
|
|
format = pkgs.formats.toml { };
|
|
confFile = format.generate "gobgpd.conf" cfg.settings;
|
|
in
|
|
{
|
|
options.services.gobgpd = {
|
|
enable = lib.mkEnableOption "GoBGP Routing Daemon";
|
|
|
|
settings = lib.mkOption {
|
|
type = format.type;
|
|
default = { };
|
|
description = ''
|
|
GoBGP configuration. Refer to
|
|
<https://github.com/osrg/gobgp#documentation>
|
|
for details on supported values.
|
|
'';
|
|
example = lib.literalExpression ''
|
|
{
|
|
global = {
|
|
config = {
|
|
as = 64512;
|
|
router-id = "192.168.255.1";
|
|
};
|
|
};
|
|
neighbors = [
|
|
{
|
|
config = {
|
|
neighbor-address = "10.0.255.1";
|
|
peer-as = 65001;
|
|
};
|
|
}
|
|
{
|
|
config = {
|
|
neighbor-address = "10.0.255.2";
|
|
peer-as = 65002;
|
|
};
|
|
}
|
|
];
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [ pkgs.gobgpd ];
|
|
systemd.services.gobgpd = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
description = "GoBGP Routing Daemon";
|
|
serviceConfig = {
|
|
Type = "notify";
|
|
ExecStartPre = "${pkgs.gobgpd}/bin/gobgpd -f ${confFile} -d";
|
|
ExecStart = "${pkgs.gobgpd}/bin/gobgpd -f ${confFile} --sdnotify";
|
|
ExecReload = "${pkgs.gobgpd}/bin/gobgpd -r";
|
|
DynamicUser = true;
|
|
AmbientCapabilities = "cap_net_bind_service";
|
|
};
|
|
};
|
|
};
|
|
}
|