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,6 +1,6 @@
{
self,
config,
privateInputs,
...
}:
{
@@ -30,7 +30,7 @@
nodes = {
actual =
{ pkgs, lib, ... }:
{ pkgs, ... }:
let
dependencies = [
pkgs.stdenv.drvPath
@@ -38,9 +38,7 @@
self.nixosConfigurations.test-morph-machine.config.system.build.toplevel
]
++ 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);
closureInfo = pkgs.closureInfo { rootPaths = dependencies; };
in