1
0

Update from updated-inputs-2025-03-03-02-03

This commit is contained in:
Flake Update Bot 2025-03-03 03:04:14 +01:00
commit a89b7dba45
6 changed files with 19 additions and 14 deletions
flake.lock
hosts
dn42-il-gw1
dn42-il-gw5
dn42-il-gw6
dn42-ildix-clerie
dn42-ildix-service

6
flake.lock generated

@ -542,11 +542,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1740695751, "lastModified": 1740828860,
"narHash": "sha256-D+R+kFxy1KsheiIzkkx/6L63wEHBYX21OIwlFV8JvDs=", "narHash": "sha256-cjbHI+zUzK5CPsQZqMhE3npTyYFt9tJ3+ohcfaOF/WM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "6313551cd05425cd5b3e63fe47dbc324eabb15e4", "rev": "303bd8071377433a2d8f76e684ec773d70c5b642",
"type": "github" "type": "github"
}, },
"original": { "original": {

@ -179,8 +179,9 @@
]; ];
}; };
services.bird2.enable = true; services.bird.enable = true;
services.bird2.config = '' services.bird.package = pkgs.bird2;
services.bird.config = ''
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address }; router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
ipv6 table ospf6; ipv6 table ospf6;

@ -37,8 +37,9 @@
]; ];
}; };
services.bird2.enable = true; services.bird.enable = true;
services.bird2.config = '' services.bird.package = pkgs.bird2;
services.bird.config = ''
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address }; router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
ipv6 table ospf6; ipv6 table ospf6;

@ -37,8 +37,9 @@
]; ];
}; };
services.bird2.enable = true; services.bird.enable = true;
services.bird2.config = '' services.bird.package = pkgs.bird2;
services.bird.config = ''
router id ${ (lib.head config.networking.interfaces.ens20.ipv4.addresses).address }; router id ${ (lib.head config.networking.interfaces.ens20.ipv4.addresses).address };
ipv6 table ospf6; ipv6 table ospf6;

@ -33,8 +33,9 @@
iptables -A INPUT -p ospfigp -j ACCEPT iptables -A INPUT -p ospfigp -j ACCEPT
''; '';
services.bird2.enable = true; services.bird.enable = true;
services.bird2.config = '' services.bird.package = pkgs.bird2;
services.bird.config = ''
router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address }; router id ${ (lib.head config.networking.interfaces.ens18.ipv4.addresses).address };
protocol direct { protocol direct {

@ -1,11 +1,12 @@
{ config, lib, ... }: { config, lib, pkgs, ... }:
{ {
networking.firewall.allowedTCPPorts = [ 179 ]; networking.firewall.allowedTCPPorts = [ 179 ];
# something doesn't work right # something doesn't work right
services.bird2.enable = false; services.bird.enable = false;
services.bird2.config = '' services.bird.package = pkgs.bird2;
services.bird.config = ''
router id ${(lib.head config.networking.interfaces.ens18.ipv4.addresses).address}; router id ${(lib.head config.networking.interfaces.ens18.ipv4.addresses).address};
ipv6 table bgp6; ipv6 table bgp6;