mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
6 lines
148 B
Nix
6 lines
148 B
Nix
{ pkgs, ... }:
|
|
{
|
|
networking.firewall.allowedTCPPorts = [ 6443 ];
|
|
environment.systemPackages = [ pkgs.kubectl ];
|
|
services.k3s.enable = true;
|
|
}
|