diff --git a/lib/tests.nix b/lib/tests.nix index f2edcbf..74ed3f9 100644 --- a/lib/tests.nix +++ b/lib/tests.nix @@ -155,9 +155,15 @@ let devices = testConfigInstall.disko.devices; }; }) - (modulesPath + "/profiles/base.nix") - (modulesPath + "/profiles/minimal.nix") extraInstallerConfig + + # from base.nix + ({ config, ... }: { + boot.supportedFilesystems = + [ "btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs" ] ++ + lib.optional (lib.meta.availableOn pkgs.stdenv.hostPlatform config.boot.zfs.package) "zfs"; + networking.hostId = "8425e349"; + }) ]; environment.systemPackages = [ pkgs.jq