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

14 lines
192 B
Nix
Raw Normal View History

2024-06-08 20:18:59 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = [
pkgs.yate
2024-06-08 22:18:23 +02:00
pkgs.git
pkgs.tcpdump
pkgs.tmux
2024-06-08 20:18:59 +02:00
];
# Just disable it for now.
networking.firewall.enable = false;
}