nixos/k3s: add extraFlags type

This commit is contained in:
Fritz Otlinghaus 2021-01-31 11:21:54 +01:00
parent 4015c5ca9c
commit 3c7c9a43dc
No known key found for this signature in database
GPG key ID: 1E5F98946FB1444E

View file

@ -47,6 +47,7 @@ in
extraFlags = mkOption {
description = "Extra flags to pass to the k3s command.";
type = types.str;
default = "";
example = "--no-deploy traefik --cluster-cidr 10.24.0.0/16";
};