From 2c07006ef090f27315841e338c73e7387e9f3c7e Mon Sep 17 00:00:00 2001 From: Astro Date: Mon, 7 Nov 2022 21:15:37 +0100 Subject: [PATCH] modules/cluster/deployment-options: revive option deployment.networks --- modules/cluster/deployment-options.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/cluster/deployment-options.nix b/modules/cluster/deployment-options.nix index d129386d..cea6881c 100644 --- a/modules/cluster/deployment-options.nix +++ b/modules/cluster/deployment-options.nix @@ -10,10 +10,10 @@ type = types.int; default = 512; }; - # networks = mkOption { - # type = with types; listOf str; - # default = [ "serv" ]; - # }; + networks = mkOption { + type = with types; listOf str; + default = [ "serv" ]; + }; persistedShares = mkOption { type = with types; listOf str; default = [ "/etc" "/home" "/var" ];