nixos-config/modules/k3s/default.nix
2024-01-02 22:41:05 +01:00

17 lines
362 B
Nix

{ 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 ];
};
}