From 399fb47d7e3898bd972c5e9f1ef04e29bb7d05b0 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 19 May 2023 21:32:20 +0200 Subject: [PATCH] let deployment.persistedShares default to [] for / on rbd --- options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.nix b/options.nix index a286fcc..43a0896 100644 --- a/options.nix +++ b/options.nix @@ -39,7 +39,7 @@ type = types.int; }; persistedShares = mkOption { - default = [ "/etc" "/home" "/var" ]; + default = []; type = with types; listOf str; }; extraShares = mkOption {