summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-31 15:02:31 +0100
committerGitHub <noreply@github.com>2021-01-31 15:02:31 +0100
commit0fc3bc21abe011fdb4fc19fe953220cbbe2e007a (patch)
treea5e30aaba374a892b0ff02e42bb732ebbd96179c
parentaf78f1103549e3c2dd4048a47c052790b08479a1 (diff)
parent3c7c9a43dc34cf08cab4feeaba88593c62288e7d (diff)
Merge pull request #111418 from helsinki-systems/k3s
nixos/k3s: add extraFlags type
-rw-r--r--nixos/modules/services/cluster/k3s/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/cluster/k3s/default.nix b/nixos/modules/services/cluster/k3s/default.nix
index f0317fdbd160..e62fbc94415c 100644
--- a/nixos/modules/services/cluster/k3s/default.nix
+++ b/nixos/modules/services/cluster/k3s/default.nix
@@ -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";
};