nixos-config/hosts/levi/kube.nix

7 lines
148 B
Nix
Raw Normal View History

2022-11-01 03:21:41 +00:00
{ pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [ 6443 ];
environment.systemPackages = [ pkgs.kubectl ];
services.k3s.enable = true;
}