We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69f62d commit a6834d2Copy full SHA for a6834d2
modules/zfs.nix
@@ -19,7 +19,8 @@ in
19
trim.enable = true;
20
};
21
22
- virtualisation.containers.storage.settings = lib.mkIf cfg.recommendedDefaults (lib.recursiveUpdate options.virtualisation.containers.storage.settings.default {
+ # TODO: drop or after https://github.com/NixOS/nixpkgs/pull/307498 is merged
23
+ virtualisation.containers.storage.settings = lib.mkIf cfg.recommendedDefaults (lib.recursiveUpdate (options.virtualisation.containers.storage.settings.default or { }) {
24
# fixes: Error: 'overlay' is not supported over zfs, a mount_program is required: backing file system is unsupported for this graph driver
25
storage.options.mount_program = lib.getExe pkgs.fuse-overlayfs;
26
});
0 commit comments