10 lines
122 B
Nix
10 lines
122 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
wireguard-tools
|
|
];
|
|
|
|
services.bird2.enable = true;
|
|
}
|