nix-infra/config/hosts/yate/yate.nix

14 lines
192 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.yate
pkgs.git
pkgs.tcpdump
pkgs.tmux
];
# Just disable it for now.
networking.firewall.enable = false;
}