{ pkgs, config, lib, ... }: with lib; let cfg = config.eboskma.k3s; in { options.eboskma.k3s = { enable = mkEnableOption "k3s"; }; config = mkIf cfg.enable { services.k3s = { enable = true; extraFlags = "--tls-san=10.0.0.4 --tls-san=100.106.117.132"; }; environment.systemPackages = with pkgs; [ kubectl kubernetes-helm ]; }; }