Compare commits

..

6 commits

Author SHA1 Message Date
f5b8304475
properly propagate modulesPath
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
ccc7d24bf0
streamline version
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
4012f2b3a6
rm modulesPath
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
f98301aacf
add nixos-test-base to targetResource, fixing basic/cli tests
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
e47642ea5c
fix primaryIPAddress
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
6f58d38c45
rm repart
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>

restore partition case from repart

Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-10-24 11:11:22 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ in
"${modulesPath}/../lib/testing/nixos-test-base.nix"
];
};
_module.args = { inherit inputs sources; };
_module.args = { inherit inputs sources modulesPath; };
inherit nodeName pathToRoot pathFromRoot;
};
};

View file

@ -30,13 +30,13 @@
type = "gpt";
partitions = {
mbr = {
MBR = {
priority = 0;
size = "1M";
type = "EF02";
};
esp = {
ESP = {
priority = 1;
size = "500M";
type = "EF00";