nixosModules: remove unnecessary ./iso and disk-layout, clanModules: fix issue #1349

This commit is contained in:
Qubasa
2024-09-03 00:09:45 +02:00
parent 57513bef93
commit e35fd0976a
8 changed files with 14 additions and 152 deletions

View File

@@ -12,11 +12,11 @@
{ lib, modulesPath, ... }:
{
imports = [
"${self}/nixosModules/disk-layouts"
self.clanModules.single-disk
(modulesPath + "/testing/test-instrumentation.nix") # we need these 2 modules always to be able to run the tests
(modulesPath + "/profiles/qemu-guest.nix")
];
clan.disk-layouts.singleDiskExt4.device = "/dev/vdb";
clan.single-disk.device = "/dev/vdb";
environment.etc."install-successful".text = "ok";