stockholm/lass/2configs/bird.nix

14 lines
182 B
Nix
Raw Normal View History

2015-07-16 13:51:01 +00:00
{ config, ... }:
{
config.services.bird = {
enable = true;
config = ''
router id 192.168.122.1;
protocol device {
scan time 10;
}
'';
};
}