11 lines
254 B
Nix
11 lines
254 B
Nix
|
{ nixpkgs ? ../../nixpkgs
|
||
|
, services ? ../../services
|
||
|
, system ? builtins.currentSystem
|
||
|
}:
|
||
|
|
||
|
with import ../lib/testing.nix { inherit nixpkgs services system; };
|
||
|
|
||
|
runInMachine {
|
||
|
drv = (import nixpkgs { }).aterm;
|
||
|
machine = { config, pkgs, ... }: { };
|
||
|
}
|