summaryrefslogtreecommitdiffstats
path: root/lass/2configs/bird.nix
blob: 3fc265cd78c657eaf32e46027035e422dfc3255c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, ... }:

{
  config.services.bird = {
    enable = true;
    config = ''
      router id 192.168.122.1;
      protocol device {
        scan time 10;
      }
    '';
  };
}