declarative-jellyfin/tests/autorun/minimal.nix
Sveske_Juice 00f7dd2955
All checks were successful
Run tests / run_tests (push) Successful in 1m30s
Assertions for users
2025-04-07 16:41:37 +02:00

27 lines
443 B
Nix

{pkgs ? import <nixpkgs> {}, ...}: let
name = "minimal";
in {
inherit name;
test = pkgs.nixosTest {
inherit name;
nodes = {
machine = {
config,
pkgs,
...
}: {
imports = [
../../modules/default.nix
];
virtualisation.memorySize = 1024;
};
};
testScript = ''
machine.start()
machine.wait_for_unit("multi-user.target");
'';
};
}