From d3aff5fa3cb1ecd9d339e3801373ec3cca0057e4 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 8 Mar 2022 09:26:05 -0500 Subject: [PATCH] openstack-config: make the expandOnBoot option default to `all` --- nixos/modules/virtualisation/openstack-config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/openstack-config.nix b/nixos/modules/virtualisation/openstack-config.nix index c5c832fb8105..f7806228c653 100644 --- a/nixos/modules/virtualisation/openstack-config.nix +++ b/nixos/modules/virtualisation/openstack-config.nix @@ -50,7 +50,7 @@ in terminal_input console serial ''; - services.zfs.expandOnBoot = mkIf cfg.zfs.enable "all"; + services.zfs.expandOnBoot = mkIf cfg.zfs.enable (lib.mkDefault "all"); boot.zfs.devNodes = mkIf cfg.zfs.enable "/dev/"; # Allow root logins