16 lines
391 B
Nix
16 lines
391 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
# we need these 2 modules always to be able to run the tests
|
|
(modulesPath + "/testing/test-instrumentation.nix")
|
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
|
|
|
(modulesPath + "/profiles/minimal.nix")
|
|
];
|
|
|
|
virtualisation.useNixStoreImage = true;
|
|
virtualisation.writableStore = true;
|
|
|
|
clan.core.enableRecommendedDefaults = false;
|
|
}
|