nixos/tests/podman: add zfs to rootful test

zowoq 2ab049a5 48642c63

Changed files
+4
nixos
tests
podman
+4
nixos/tests/podman/default.nix
···
nodes = {
rootful = { pkgs, ... }: {
virtualisation.podman.enable = true;
+
+
# hack to ensure that podman built with and without zfs in extraPackages is cached
+
boot.supportedFilesystems = [ "zfs" ];
+
networking.hostId = "00000000";
};
rootless = { pkgs, ... }: {
virtualisation.podman.enable = true;