add k3s config file

This commit is contained in:
Sean Buckley 2022-10-31 23:21:41 -04:00
parent 70526d0968
commit b3a9987164

6
hosts/levi/kube.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [ 6443 ];
environment.systemPackages = [ pkgs.kubectl ];
services.k3s.enable = true;
}