summary refs log tree commit diff
path: root/nixos/modules/services/cluster/k3s/default.nix
diff options
context:
space:
mode:
authorFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 11:21:54 +0100
committerFritz Otlinghaus <fritz@otlinghaus.it>2021-01-31 11:21:54 +0100
commit3c7c9a43dc34cf08cab4feeaba88593c62288e7d (patch)
tree30641eead8e0b3ea5a3d5d5c74e42b99ad17fd3d /nixos/modules/services/cluster/k3s/default.nix
parent4015c5ca9c6ec7d4aa765c97b4413b478daa278b (diff)
downloadnixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar.gz
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar.bz2
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar.lz
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar.xz
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.tar.zst
nixpkgs-3c7c9a43dc34cf08cab4feeaba88593c62288e7d.zip
nixos/k3s: add extraFlags type
Diffstat (limited to 'nixos/modules/services/cluster/k3s/default.nix')
-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 f0317fdbd16..e62fbc94415 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";
     };