test-fixtures: move to devFlake

This commit is contained in:
Michael Hoang
2025-09-25 22:33:55 +02:00
parent 01baa46b36
commit dc66321a72
8 changed files with 101 additions and 68 deletions

View File

@@ -1,4 +1,4 @@
{ self, config, ... }:
{ self, privateInputs, ... }:
{
# Machine for update test
clan.machines.test-update-machine = {
@@ -105,7 +105,6 @@
perSystem =
{
pkgs,
lib,
...
}:
{
@@ -125,9 +124,7 @@
pkgs.bubblewrap
]
++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs)
++ builtins.map (import ../installation/facter-report.nix) (
lib.filter (lib.hasSuffix "linux") config.systems
);
++ builtins.map (i: i.outPath) (builtins.attrValues privateInputs);
};
in
self.clanLib.test.containerTest {