Merge pull request #305845 from abathur/resholve_0.10.5
[NixPkgs.git] / nixos / tests / activation / perlless.nix
blob4d784b4542f459d94e0931a4e2d0faad16fb9b75
1 { lib, ... }:
5   name = "activation-perlless";
7   meta.maintainers = with lib.maintainers; [ nikstur ];
9   nodes.machine = { pkgs, modulesPath, ... }: {
10     imports = [ "${modulesPath}/profiles/perlless.nix" ];
12     boot.kernelPackages = pkgs.linuxPackages_latest;
14     virtualisation.mountHostNixStore = false;
15     virtualisation.useNixStoreImage = true;
16   };
18   testScript = ''
19     perl_store_paths = machine.succeed("ls /nix/store | grep perl || true")
20     print(perl_store_paths)
21     assert len(perl_store_paths) == 0
22   '';