dynix/tests/distccd/test.nix

24 lines
513 B
Nix
Raw Normal View History

2026-02-13 21:12:55 +01:00
{ mkDynixConfigurationDotNix, config, ... }:
{
name = "nixos-test-dynamicism-distccd";
defaults = { ... }: { };
extraPythonPackages = p: [ p.beartype ];
nodes.machine = { name, pkgs, ... }: {
imports = [ ./configuration.nix ];
environment.systemPackages = let
configFileTree = mkDynixConfigurationDotNix {
inherit (config) name;
configuration = ./configuration.nix;
};
in [
configFileTree
];
};
testScript = builtins.readFile ./test-script.py;
}