2022-06-25 12:47:50 +02:00
|
|
|
{
|
|
|
|
system,
|
|
|
|
pkgs,
|
|
|
|
|
|
|
|
# Projects the test configuration into a the desired value; usually
|
|
|
|
# the test runner: `config: config.test`.
|
|
|
|
callTest,
|
|
|
|
|
|
|
|
}:
|
2018-11-11 20:30:07 +09:00
|
|
|
# The return value of this function will be an attrset with arbitrary depth and
|
2025-04-06 11:32:43 -07:00
|
|
|
# the `anything` returned by callTest at its test leaves.
|
2018-11-11 20:30:07 +09:00
|
|
|
# The tests not supported by `system` will be replaced with `{}`, so that
|
2018-11-11 22:55:23 +09:00
|
|
|
# `passthru.tests` can contain links to those without breaking on architectures
|
2018-11-11 20:30:07 +09:00
|
|
|
# where said tests are unsupported.
|
|
|
|
# Example callTest that just extracts the derivation from the test:
|
|
|
|
# callTest = t: t.test;
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
discoverTests =
|
|
|
|
val:
|
2022-06-25 21:26:50 +02:00
|
|
|
if isAttrs val then
|
|
|
|
if hasAttr "test" val then
|
|
|
|
callTest val
|
2023-08-06 15:40:10 +02:00
|
|
|
else
|
|
|
|
mapAttrs (n: s: if n == "passthru" then s else discoverTests s) val
|
2022-06-25 21:26:50 +02:00
|
|
|
else if isFunction val then
|
|
|
|
# Tests based on make-test-python.nix will return the second lambda
|
|
|
|
# in that file, which are then forwarded to the test definition
|
|
|
|
# following the `import make-test-python.nix` expression
|
|
|
|
# (if it is a function).
|
|
|
|
discoverTests (val {
|
|
|
|
inherit system pkgs;
|
|
|
|
})
|
|
|
|
else
|
|
|
|
val;
|
2025-02-21 10:14:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
Evaluate a test and return a derivation that runs the test as its builder.
|
|
|
|
|
|
|
|
This function is deprecated in favor of runTest and runTestOn, which works
|
|
|
|
by passing a module instead of a specific set of arguments.
|
|
|
|
Benefits of runTest and runTestOn:
|
|
|
|
- Define values for any test option
|
|
|
|
- Use imports to compose tests
|
|
|
|
- Access the module arguments like hostPkgs and config.node.pkgs
|
|
|
|
- Portable to other VM hosts, specifically Darwin
|
|
|
|
- Faster evaluation, using a single `pkgs` instance
|
|
|
|
|
|
|
|
Changes required to migrate to runTest:
|
|
|
|
- Remove any `import ../make-test-python.nix` or similar calls, leaving only
|
|
|
|
the callback function.
|
|
|
|
- Convert the function header to make it a module.
|
|
|
|
Packages can be taken from the following. For VM host portability, use
|
|
|
|
- `config.node.pkgs.<name>` or `config.nodes.foo.nixpkgs.pkgs.<name>` to refer
|
|
|
|
to the Nixpkgs used on the VM guest(s).
|
|
|
|
- `hostPkgs.<name>` when invoking commands on the VM host (e.g. in Python
|
|
|
|
`os.system("foo")`)
|
|
|
|
- Since the runTest argument is a module instead of a function, arguments
|
|
|
|
must be passed as option definitions.
|
|
|
|
You may declare explicit `options` for the test parameter(s), or use the
|
|
|
|
less explicit `_module.args.<name>` to pass arguments to the module.
|
|
|
|
|
|
|
|
Example call with arguments:
|
|
|
|
|
|
|
|
runTest {
|
|
|
|
imports = [ ./test.nix ];
|
|
|
|
_module.args.getPackage = pkgs: pkgs.foo_1_2;
|
|
|
|
}
|
|
|
|
|
|
|
|
- If your test requires any definitions in `nixpkgs.*` options, set
|
|
|
|
`node.pkgsReadOnly = false` in the test configuration.
|
|
|
|
*/
|
2018-11-11 20:30:07 +09:00
|
|
|
handleTest = path: args: discoverTests (import path ({ inherit system pkgs; } // args));
|
2025-02-21 10:14:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
See handleTest
|
|
|
|
*/
|
2018-11-11 20:30:07 +09:00
|
|
|
handleTestOn =
|
|
|
|
systems: path: args:
|
|
|
|
if elem system systems then handleTest path args else { };
|
2021-12-03 12:04:36 +00:00
|
|
|
|
2022-01-07 01:09:46 +01:00
|
|
|
nixosLib = import ../lib {
|
|
|
|
# Experimental features need testing too, but there's no point in warning
|
|
|
|
# about it, so we enable the feature flag.
|
|
|
|
featureFlags.minimalModules = { };
|
|
|
|
};
|
2021-12-03 12:04:36 +00:00
|
|
|
evalMinimalConfig = module: nixosLib.evalModules { modules = [ module ]; };
|
2022-06-03 14:34:29 +02:00
|
|
|
|
2022-06-06 20:19:59 +02:00
|
|
|
inherit
|
|
|
|
(rec {
|
2022-09-29 10:32:31 +02:00
|
|
|
doRunTest =
|
|
|
|
arg:
|
|
|
|
((import ../lib/testing-python.nix { inherit system pkgs; }).evalTest {
|
2023-05-07 19:25:33 +02:00
|
|
|
imports = [
|
|
|
|
arg
|
|
|
|
readOnlyPkgs
|
|
|
|
];
|
2022-09-29 10:32:31 +02:00
|
|
|
}).config.result;
|
2022-06-06 20:19:59 +02:00
|
|
|
findTests =
|
|
|
|
tree:
|
|
|
|
if tree ? recurseForDerivations && tree.recurseForDerivations then
|
2022-06-25 12:47:50 +02:00
|
|
|
mapAttrs (k: findTests) (builtins.removeAttrs tree [ "recurseForDerivations" ])
|
|
|
|
else
|
|
|
|
callTest tree;
|
|
|
|
|
2022-06-06 20:19:59 +02:00
|
|
|
runTest =
|
|
|
|
arg:
|
|
|
|
let
|
|
|
|
r = doRunTest arg;
|
|
|
|
in
|
|
|
|
findTests r;
|
|
|
|
runTestOn = systems: arg: if elem system systems then runTest arg else { };
|
|
|
|
})
|
2025-02-21 10:14:58 +01:00
|
|
|
/**
|
|
|
|
See https://nixos.org/manual/nixos/unstable/#sec-calling-nixos-tests
|
|
|
|
*/
|
2022-06-06 20:19:59 +02:00
|
|
|
runTest
|
2025-02-21 10:14:58 +01:00
|
|
|
/**
|
|
|
|
See https://nixos.org/manual/nixos/unstable/#sec-calling-nixos-tests
|
|
|
|
*/
|
2022-06-06 20:19:59 +02:00
|
|
|
runTestOn
|
|
|
|
;
|
|
|
|
|
2023-05-07 15:44:54 +02:00
|
|
|
# Using a single instance of nixpkgs makes test evaluation faster.
|
|
|
|
# To make sure we don't accidentally depend on a modified pkgs, we make the
|
|
|
|
# related options read-only. We need to test the right configuration.
|
|
|
|
#
|
|
|
|
# If your service depends on a nixpkgs setting, first try to avoid that, but
|
|
|
|
# otherwise, you can remove the readOnlyPkgs import and test your service as
|
|
|
|
# usual.
|
|
|
|
readOnlyPkgs =
|
|
|
|
# TODO: We currently accept this for nixosTests, so that the `pkgs` argument
|
|
|
|
# is consistent with `pkgs` in `pkgs.nixosTests`. Can we reinitialize
|
|
|
|
# it with `allowAliases = false`?
|
|
|
|
# warnIf pkgs.config.allowAliases "nixosTests: pkgs includes aliases."
|
|
|
|
{
|
2024-03-01 21:33:14 -08:00
|
|
|
_file = "${__curPos.file} readOnlyPkgs";
|
2023-05-07 15:44:54 +02:00
|
|
|
_class = "nixosTest";
|
2024-03-01 21:33:14 -08:00
|
|
|
node.pkgs = pkgs.pkgsLinux;
|
2023-05-07 15:44:54 +02:00
|
|
|
};
|
|
|
|
|
2022-06-06 19:24:30 +02:00
|
|
|
in
|
|
|
|
{
|
2023-04-25 11:59:14 +02:00
|
|
|
|
|
|
|
# Testing the test driver
|
|
|
|
nixos-test-driver = {
|
2025-05-24 23:40:23 +08:00
|
|
|
extra-python-packages = runTest ./nixos-test-driver/extra-python-packages.nix;
|
2023-06-03 20:10:20 -07:00
|
|
|
lib-extend = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nixos-test-driver/lib-extend.nix { };
|
2023-04-25 12:21:38 +02:00
|
|
|
node-name = runTest ./nixos-test-driver/node-name.nix;
|
2023-07-07 10:58:13 +02:00
|
|
|
busybox = runTest ./nixos-test-driver/busybox.nix;
|
2023-10-27 13:32:04 +02:00
|
|
|
driver-timeout =
|
|
|
|
pkgs.runCommand "ensure-timeout-induced-failure"
|
|
|
|
{
|
|
|
|
failed = pkgs.testers.testBuildFailure (
|
|
|
|
(runTest ./nixos-test-driver/timeout.nix).config.rawTestDerivation
|
|
|
|
);
|
|
|
|
}
|
|
|
|
''
|
|
|
|
grep -F "timeout reached; test terminating" $failed/testBuildFailure.log
|
|
|
|
# The program will always be terminated by SIGTERM (143) if it waits for the deadline thread.
|
|
|
|
[[ 143 = $(cat $failed/testBuildFailure.exit) ]]
|
|
|
|
touch $out
|
|
|
|
'';
|
2023-04-25 11:59:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# NixOS vm tests and non-vm unit tests
|
|
|
|
|
2022-06-06 21:19:22 +02:00
|
|
|
_3proxy = runTest ./3proxy.nix;
|
2023-04-04 20:18:38 +02:00
|
|
|
aaaaxy = runTest ./aaaaxy.nix;
|
2025-01-20 16:38:12 +00:00
|
|
|
acme = import ./acme/default.nix { inherit runTest; };
|
2025-03-13 22:46:32 +01:00
|
|
|
acme-dns = runTest ./acme-dns.nix;
|
2025-03-13 22:47:51 +01:00
|
|
|
actual = runTest ./actual.nix;
|
2022-06-09 17:43:22 +02:00
|
|
|
adguardhome = runTest ./adguardhome.nix;
|
2022-11-25 19:20:39 +01:00
|
|
|
aesmd = runTestOn [ "x86_64-linux" ] ./aesmd.nix;
|
2022-06-09 17:46:51 +02:00
|
|
|
agate = runTest ./web-servers/agate.nix;
|
2025-03-13 22:48:41 +01:00
|
|
|
agda = runTest ./agda.nix;
|
2025-02-16 09:49:59 -08:00
|
|
|
age-plugin-tpm-decrypt = runTest ./age-plugin-tpm-decrypt.nix;
|
2023-02-27 00:17:06 +02:00
|
|
|
agnos = discoverTests (import ./agnos.nix);
|
2024-10-14 23:25:16 +02:00
|
|
|
agorakit = runTest ./web-apps/agorakit.nix;
|
2025-03-13 22:50:36 +01:00
|
|
|
airsonic = runTest ./airsonic.nix;
|
2025-03-10 18:38:45 +01:00
|
|
|
akkoma = runTestOn [ "x86_64-linux" "aarch64-linux" ] {
|
|
|
|
imports = [ ./akkoma.nix ];
|
|
|
|
_module.args.confined = false;
|
|
|
|
};
|
|
|
|
akkoma-confined = runTestOn [ "x86_64-linux" "aarch64-linux" ] {
|
|
|
|
imports = [ ./akkoma.nix ];
|
|
|
|
_module.args.confined = true;
|
|
|
|
};
|
2025-03-13 22:55:56 +01:00
|
|
|
alice-lg = runTest ./alice-lg.nix;
|
2025-03-13 22:57:18 +01:00
|
|
|
alloy = runTest ./alloy.nix;
|
2025-03-13 22:59:02 +01:00
|
|
|
allTerminfo = runTest ./all-terminfo.nix;
|
2025-03-13 23:08:11 +01:00
|
|
|
alps = runTest ./alps.nix;
|
2025-03-13 23:16:14 +01:00
|
|
|
amazon-cloudwatch-agent = runTest ./amazon-cloudwatch-agent.nix;
|
2025-03-13 23:18:09 +01:00
|
|
|
amazon-init-shell = runTest ./amazon-init-shell.nix;
|
2025-03-13 23:21:27 +01:00
|
|
|
amazon-ssm-agent = runTest ./amazon-ssm-agent.nix;
|
2023-08-10 20:42:41 +02:00
|
|
|
amd-sev = runTest ./amd-sev.nix;
|
2025-03-13 23:24:10 +01:00
|
|
|
angie-api = runTest ./angie-api.nix;
|
2025-03-13 23:24:58 +01:00
|
|
|
anki-sync-server = runTest ./anki-sync-server.nix;
|
2025-03-22 14:03:09 +08:00
|
|
|
anubis = runTest ./anubis.nix;
|
2025-03-13 23:26:26 +01:00
|
|
|
anuko-time-tracker = runTest ./anuko-time-tracker.nix;
|
2025-03-13 23:27:09 +01:00
|
|
|
apcupsd = runTest ./apcupsd.nix;
|
2023-04-04 20:12:51 +02:00
|
|
|
apfs = runTest ./apfs.nix;
|
2023-07-16 22:16:55 +02:00
|
|
|
appliance-repart-image = runTest ./appliance-repart-image.nix;
|
2024-09-18 19:26:31 +02:00
|
|
|
appliance-repart-image-verity-store = runTest ./appliance-repart-image-verity-store.nix;
|
2025-03-13 23:31:20 +01:00
|
|
|
apparmor = runTest ./apparmor;
|
2025-03-13 23:35:22 +01:00
|
|
|
archi = runTest ./archi.nix;
|
2025-03-13 23:36:28 +01:00
|
|
|
aria2 = runTest ./aria2.nix;
|
2025-03-13 23:38:13 +01:00
|
|
|
armagetronad = runTest ./armagetronad.nix;
|
2024-11-21 12:52:14 +08:00
|
|
|
artalk = runTest ./artalk.nix;
|
2025-03-13 23:40:53 +01:00
|
|
|
atd = runTest ./atd.nix;
|
2025-04-05 18:56:33 +02:00
|
|
|
atop = import ./atop.nix { inherit pkgs runTest; };
|
2024-10-10 10:57:51 -04:00
|
|
|
atticd = runTest ./atticd.nix;
|
2024-12-30 10:20:05 +02:00
|
|
|
atuin = runTest ./atuin.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ax25 = runTest ./ax25.nix;
|
2025-03-13 23:43:22 +01:00
|
|
|
audiobookshelf = runTest ./audiobookshelf.nix;
|
2025-03-13 23:45:17 +01:00
|
|
|
auth-mysql = runTest ./auth-mysql.nix;
|
2025-03-13 23:48:27 +01:00
|
|
|
authelia = runTest ./authelia.nix;
|
2025-03-13 23:50:05 +01:00
|
|
|
auto-cpufreq = runTest ./auto-cpufreq.nix;
|
2025-03-13 23:50:51 +01:00
|
|
|
autobrr = runTest ./autobrr.nix;
|
2025-03-13 23:57:19 +01:00
|
|
|
avahi = runTest {
|
|
|
|
imports = [ ./avahi.nix ];
|
|
|
|
_module.args.networkd = false;
|
|
|
|
};
|
|
|
|
avahi-with-resolved = runTest {
|
|
|
|
imports = [ ./avahi.nix ];
|
|
|
|
_module.args.networkd = true;
|
|
|
|
};
|
2024-08-15 22:06:15 +02:00
|
|
|
ayatana-indicators = runTest ./ayatana-indicators.nix;
|
2025-03-10 19:30:20 +01:00
|
|
|
babeld = runTest ./babeld.nix;
|
2025-03-31 22:37:56 +02:00
|
|
|
bazarr = runTest ./bazarr.nix;
|
2025-04-01 21:27:35 +02:00
|
|
|
bcachefs = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./bcachefs.nix;
|
2025-04-01 23:13:43 +02:00
|
|
|
beanstalkd = runTest ./beanstalkd.nix;
|
2025-04-03 18:47:20 +02:00
|
|
|
bees = runTest ./bees.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
benchexec = runTest ./benchexec.nix;
|
2025-04-01 21:38:41 +02:00
|
|
|
binary-cache = runTest {
|
|
|
|
imports = [ ./binary-cache.nix ];
|
|
|
|
_module.args.compression = "zstd";
|
|
|
|
};
|
|
|
|
binary-cache-no-compression = runTest {
|
|
|
|
imports = [ ./binary-cache.nix ];
|
|
|
|
_module.args.compression = "none";
|
|
|
|
};
|
|
|
|
binary-cache-xz = runTest {
|
|
|
|
imports = [ ./binary-cache.nix ];
|
|
|
|
_module.args.compression = "xz";
|
|
|
|
};
|
2025-04-04 20:57:18 +02:00
|
|
|
bind = runTest ./bind.nix;
|
2022-01-25 15:15:52 +01:00
|
|
|
bird = handleTest ./bird.nix { };
|
2023-04-12 09:20:16 +02:00
|
|
|
birdwatcher = handleTest ./birdwatcher.nix { };
|
2025-03-24 19:42:20 +01:00
|
|
|
bitbox-bridge = runTest ./bitbox-bridge.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
bitcoind = runTest ./bitcoind.nix;
|
|
|
|
bittorrent = runTest ./bittorrent.nix;
|
|
|
|
blockbook-frontend = runTest ./blockbook-frontend.nix;
|
2022-02-10 19:44:18 -03:00
|
|
|
blocky = handleTest ./blocky.nix { };
|
2021-05-25 21:13:29 +03:00
|
|
|
boot = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./boot.nix { };
|
2022-12-21 14:11:37 -08:00
|
|
|
bootspec = handleTestOn [ "x86_64-linux" ] ./bootspec.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
boot-stage1 = runTest ./boot-stage1.nix;
|
|
|
|
boot-stage2 = runTest ./boot-stage2.nix;
|
|
|
|
borgbackup = runTest ./borgbackup.nix;
|
|
|
|
borgmatic = runTest ./borgmatic.nix;
|
2025-03-10 20:15:36 +01:00
|
|
|
botamusique = runTest ./botamusique.nix;
|
2021-12-04 10:20:26 +09:00
|
|
|
bpf = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./bpf.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
bpftune = runTest ./bpftune.nix;
|
|
|
|
breitbandmessung = runTest ./breitbandmessung.nix;
|
|
|
|
brscan5 = runTest ./brscan5.nix;
|
|
|
|
btrbk = runTest ./btrbk.nix;
|
|
|
|
btrbk-doas = runTest ./btrbk-doas.nix;
|
|
|
|
btrbk-no-timer = runTest ./btrbk-no-timer.nix;
|
|
|
|
btrbk-section-order = runTest ./btrbk-section-order.nix;
|
|
|
|
budgie = runTest ./budgie.nix;
|
2025-04-01 21:51:09 +02:00
|
|
|
buildbot = runTest ./buildbot.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
buildkite-agents = runTest ./buildkite-agents.nix;
|
|
|
|
c2fmzq = runTest ./c2fmzq.nix;
|
2025-04-02 12:35:10 +02:00
|
|
|
caddy = runTest ./caddy.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
cadvisor = handleTestOn [ "x86_64-linux" ] ./cadvisor.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
cage = runTest ./cage.nix;
|
|
|
|
cagebreak = runTest ./cagebreak.nix;
|
2025-04-05 18:29:55 +02:00
|
|
|
calibre-web = runTest ./calibre-web.nix;
|
2025-04-05 18:35:52 +02:00
|
|
|
calibre-server = import ./calibre-server.nix { inherit pkgs runTest; };
|
2025-05-24 23:40:23 +08:00
|
|
|
canaille = runTest ./canaille.nix;
|
|
|
|
castopod = runTest ./castopod.nix;
|
2022-04-06 13:03:07 +02:00
|
|
|
cassandra_4 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_4; };
|
2023-08-15 06:34:32 +03:00
|
|
|
centrifugo = runTest ./centrifugo.nix;
|
2023-03-24 14:29:07 +01:00
|
|
|
ceph-multi-node = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-multi-node.nix { };
|
|
|
|
ceph-single-node = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./ceph-single-node.nix { };
|
|
|
|
ceph-single-node-bluestore = handleTestOn [
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
] ./ceph-single-node-bluestore.nix { };
|
2024-08-22 13:31:52 +00:00
|
|
|
ceph-single-node-bluestore-dmcrypt = handleTestOn [
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
] ./ceph-single-node-bluestore-dmcrypt.nix { };
|
2018-11-11 20:30:07 +09:00
|
|
|
certmgr = handleTest ./certmgr.nix { };
|
2022-09-24 17:38:37 +10:00
|
|
|
cfssl = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cfssl.nix { };
|
2025-04-04 21:08:27 +02:00
|
|
|
cgit = runTest ./cgit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
charliecloud = runTest ./charliecloud.nix;
|
2024-08-16 18:14:15 +02:00
|
|
|
chromadb = runTest ./chromadb.nix;
|
2022-10-09 23:29:45 +02:00
|
|
|
chromium = (handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./chromium.nix { }).stable or { };
|
2023-08-10 02:02:33 +02:00
|
|
|
chrony = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./chrony.nix { };
|
2023-01-15 14:06:58 +01:00
|
|
|
chrony-ptp = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./chrony-ptp.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
cinnamon = runTest ./cinnamon.nix;
|
|
|
|
cinnamon-wayland = runTest ./cinnamon-wayland.nix;
|
|
|
|
cjdns = runTest ./cjdns.nix;
|
2025-03-17 13:52:37 -07:00
|
|
|
clatd = runTest ./clatd.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
clickhouse = runTest ./clickhouse.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
cloud-init = handleTest ./cloud-init.nix { };
|
2022-09-30 19:38:49 +05:30
|
|
|
cloud-init-hostname = handleTest ./cloud-init-hostname.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
cloudlog = runTest ./cloudlog.nix;
|
2022-09-24 16:15:39 +10:00
|
|
|
cntr = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cntr.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
cockpit = runTest ./cockpit.nix;
|
2020-11-29 20:00:38 -03:00
|
|
|
cockroachdb = handleTestOn [ "x86_64-linux" ] ./cockroachdb.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
code-server = runTest ./code-server.nix;
|
|
|
|
coder = runTest ./coder.nix;
|
|
|
|
collectd = runTest ./collectd.nix;
|
|
|
|
commafeed = runTest ./commafeed.nix;
|
|
|
|
connman = runTest ./connman.nix;
|
|
|
|
consul = runTest ./consul.nix;
|
|
|
|
consul-template = runTest ./consul-template.nix;
|
|
|
|
containers-bridge = runTest ./containers-bridge.nix;
|
|
|
|
containers-custom-pkgs.nix = runTest ./containers-custom-pkgs.nix;
|
|
|
|
containers-ephemeral = runTest ./containers-ephemeral.nix;
|
|
|
|
containers-extra_veth = runTest ./containers-extra_veth.nix;
|
|
|
|
containers-hosts = runTest ./containers-hosts.nix;
|
|
|
|
containers-imperative = runTest ./containers-imperative.nix;
|
|
|
|
containers-ip = runTest ./containers-ip.nix;
|
|
|
|
containers-macvlans = runTest ./containers-macvlans.nix;
|
|
|
|
containers-names = runTest ./containers-names.nix;
|
|
|
|
containers-nested = runTest ./containers-nested.nix;
|
|
|
|
containers-physical_interfaces = runTest ./containers-physical_interfaces.nix;
|
|
|
|
containers-portforward = runTest ./containers-portforward.nix;
|
|
|
|
containers-reloadable = runTest ./containers-reloadable.nix;
|
|
|
|
containers-require-bind-mounts = runTest ./containers-require-bind-mounts.nix;
|
|
|
|
containers-restart_networking = runTest ./containers-restart_networking.nix;
|
|
|
|
containers-tmpfs = runTest ./containers-tmpfs.nix;
|
|
|
|
containers-unified-hierarchy = runTest ./containers-unified-hierarchy.nix;
|
|
|
|
convos = runTest ./convos.nix;
|
2020-01-07 11:52:32 -05:00
|
|
|
corerad = handleTest ./corerad.nix { };
|
2025-04-06 13:22:49 +05:30
|
|
|
cosmic = runTest {
|
|
|
|
imports = [ ./cosmic.nix ];
|
|
|
|
_module.args.testName = "cosmic";
|
|
|
|
_module.args.enableAutologin = false;
|
|
|
|
_module.args.enableXWayland = true;
|
|
|
|
};
|
2025-04-06 13:23:14 +05:30
|
|
|
cosmic-autologin = runTest {
|
|
|
|
imports = [ ./cosmic.nix ];
|
|
|
|
_module.args.testName = "cosmic-autologin";
|
|
|
|
_module.args.enableAutologin = true;
|
|
|
|
_module.args.enableXWayland = true;
|
|
|
|
};
|
2025-04-06 13:23:43 +05:30
|
|
|
cosmic-noxwayland = runTest {
|
|
|
|
imports = [ ./cosmic.nix ];
|
|
|
|
_module.args.testName = "cosmic-noxwayland";
|
|
|
|
_module.args.enableAutologin = false;
|
|
|
|
_module.args.enableXWayland = false;
|
|
|
|
};
|
2025-04-06 13:24:08 +05:30
|
|
|
cosmic-autologin-noxwayland = runTest {
|
|
|
|
imports = [ ./cosmic.nix ];
|
|
|
|
_module.args.testName = "cosmic-autologin-noxwayland";
|
|
|
|
_module.args.enableAutologin = true;
|
|
|
|
_module.args.enableXWayland = false;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
coturn = runTest ./coturn.nix;
|
|
|
|
couchdb = runTest ./couchdb.nix;
|
|
|
|
crabfit = runTest ./crabfit.nix;
|
2022-09-24 17:39:15 +10:00
|
|
|
cri-o = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./cri-o.nix { };
|
2024-07-19 21:45:19 +09:00
|
|
|
cryptpad = runTest ./cryptpad.nix;
|
2025-03-05 18:55:53 +01:00
|
|
|
cups-pdf = runTest ./cups-pdf.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
curl-impersonate = runTest ./curl-impersonate.nix;
|
2021-01-10 18:28:29 +01:00
|
|
|
custom-ca = handleTest ./custom-ca.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
croc = runTest ./croc.nix;
|
2025-02-23 17:35:38 +00:00
|
|
|
cross-seed = runTest ./cross-seed.nix;
|
2024-05-10 10:29:44 +08:00
|
|
|
cyrus-imap = runTest ./cyrus-imap.nix;
|
2024-07-01 21:42:50 +02:00
|
|
|
darling-dmg = runTest ./darling-dmg.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
dae = runTest ./dae.nix;
|
2025-03-30 00:29:17 +01:00
|
|
|
davis = runTest ./davis.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
db-rest = runTest ./db-rest.nix;
|
|
|
|
dconf = runTest ./dconf.nix;
|
|
|
|
ddns-updater = runTest ./ddns-updater.nix;
|
|
|
|
deconz = runTest ./deconz.nix;
|
|
|
|
deepin = runTest ./deepin.nix;
|
|
|
|
deluge = runTest ./deluge.nix;
|
|
|
|
dendrite = runTest ./matrix/dendrite.nix;
|
|
|
|
dependency-track = runTest ./dependency-track.nix;
|
|
|
|
devpi-server = runTest ./devpi-server.nix;
|
|
|
|
dex-oidc = runTest ./dex-oidc.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
dhparams = handleTest ./dhparams.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
disable-installer-tools = runTest ./disable-installer-tools.nix;
|
|
|
|
discourse = runTest ./discourse.nix;
|
2020-02-01 18:59:02 -05:00
|
|
|
dnscrypt-proxy2 = handleTestOn [ "x86_64-linux" ] ./dnscrypt-proxy2.nix { };
|
2023-11-27 22:00:42 +01:00
|
|
|
dnsdist = import ./dnsdist.nix { inherit pkgs runTest; };
|
2025-03-31 22:43:40 +02:00
|
|
|
doas = runTest ./doas.nix;
|
2025-04-02 14:37:58 +02:00
|
|
|
docker = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker.nix;
|
2025-04-02 14:49:24 +02:00
|
|
|
docker-rootless = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./docker-rootless.nix;
|
2025-04-02 14:57:40 +02:00
|
|
|
docker-registry = runTest ./docker-registry.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
docker-tools = handleTestOn [ "x86_64-linux" ] ./docker-tools.nix { };
|
2024-07-28 22:52:11 +02:00
|
|
|
docker-tools-nix-shell = runTest ./docker-tools-nix-shell.nix;
|
2025-04-02 17:19:19 +02:00
|
|
|
docker-tools-cross = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./docker-tools-cross.nix;
|
2025-04-02 17:14:24 +02:00
|
|
|
docker-tools-overlay = runTestOn [ "x86_64-linux" ] ./docker-tools-overlay.nix;
|
2025-04-01 09:26:12 +02:00
|
|
|
docling-serve = runTest ./docling-serve.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
documize = runTest ./documize.nix;
|
2022-07-14 11:57:37 +02:00
|
|
|
documentation = pkgs.callPackage ../modules/misc/documentation/test.nix { inherit nixosLib; };
|
2025-05-24 23:40:23 +08:00
|
|
|
doh-proxy-rust = runTest ./doh-proxy-rust.nix;
|
2025-03-28 14:06:50 +01:00
|
|
|
dokuwiki = runTest ./dokuwiki.nix;
|
2025-03-30 01:05:50 +01:00
|
|
|
dolibarr = runTest ./dolibarr.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
domination = runTest ./domination.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
dovecot = handleTest ./dovecot.nix { };
|
2023-12-23 15:53:20 -06:00
|
|
|
drawterm = discoverTests (import ./drawterm.nix);
|
2025-05-24 23:40:23 +08:00
|
|
|
drbd = runTest ./drbd.nix;
|
2024-03-14 00:12:18 +05:30
|
|
|
druid = handleTestOn [ "x86_64-linux" ] ./druid { };
|
2025-05-24 23:40:23 +08:00
|
|
|
drbd-driver = runTest ./drbd-driver.nix;
|
|
|
|
dublin-traceroute = runTest ./dublin-traceroute.nix;
|
2022-03-24 08:34:09 +01:00
|
|
|
earlyoom = handleTestOn [ "x86_64-linux" ] ./earlyoom.nix { };
|
2023-04-25 13:07:08 +02:00
|
|
|
early-mount-options = handleTest ./early-mount-options.nix { };
|
2020-02-13 21:31:58 +01:00
|
|
|
ec2-config = (handleTestOn [ "x86_64-linux" ] ./ec2.nix { }).boot-ec2-config or { };
|
2018-11-11 20:30:07 +09:00
|
|
|
ec2-nixops = (handleTestOn [ "x86_64-linux" ] ./ec2.nix { }).boot-ec2-nixops or { };
|
2025-03-06 02:00:59 +01:00
|
|
|
echoip = runTest ./echoip.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ecryptfs = runTest ./ecryptfs.nix;
|
|
|
|
fscrypt = runTest ./fscrypt.nix;
|
2023-10-18 04:13:16 +02:00
|
|
|
fastnetmon-advanced = runTest ./fastnetmon-advanced.nix;
|
2025-05-28 18:42:34 +01:00
|
|
|
lauti = runTest ./lauti.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ejabberd = runTest ./xmpp/ejabberd.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
elk = handleTestOn [ "x86_64-linux" ] ./elk.nix { };
|
2025-03-28 14:40:52 +01:00
|
|
|
emacs-daemon = runTest ./emacs-daemon.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
endlessh = runTest ./endlessh.nix;
|
|
|
|
endlessh-go = runTest ./endlessh-go.nix;
|
|
|
|
engelsystem = runTest ./engelsystem.nix;
|
|
|
|
enlightenment = runTest ./enlightenment.nix;
|
|
|
|
env = runTest ./env.nix;
|
|
|
|
envfs = runTest ./envfs.nix;
|
2025-03-31 17:17:52 -04:00
|
|
|
envoy = runTest {
|
|
|
|
imports = [ ./envoy.nix ];
|
|
|
|
_module.args.envoyPackage = pkgs.envoy;
|
|
|
|
};
|
2025-03-31 17:17:52 -04:00
|
|
|
envoy-bin = runTest {
|
|
|
|
imports = [ ./envoy.nix ];
|
|
|
|
_module.args.envoyPackage = pkgs.envoy-bin;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
ergo = runTest ./ergo.nix;
|
|
|
|
ergochat = runTest ./ergochat.nix;
|
|
|
|
eris-server = runTest ./eris-server.nix;
|
|
|
|
esphome = runTest ./esphome.nix;
|
2021-12-03 12:21:16 +00:00
|
|
|
etc = pkgs.callPackage ../modules/system/etc/test.nix { inherit evalMinimalConfig; };
|
2022-12-01 18:49:48 +02:00
|
|
|
activation = pkgs.callPackage ../modules/system/activation/test.nix { };
|
2024-07-16 20:25:06 +02:00
|
|
|
activation-lib = pkgs.callPackage ../modules/system/activation/lib/test.nix { };
|
2023-10-17 17:35:16 +02:00
|
|
|
activation-var = runTest ./activation/var.nix;
|
2023-10-17 21:39:51 +02:00
|
|
|
activation-nix-channel = runTest ./activation/nix-channel.nix;
|
2023-10-13 00:02:48 +02:00
|
|
|
activation-etc-overlay-mutable = runTest ./activation/etc-overlay-mutable.nix;
|
|
|
|
activation-etc-overlay-immutable = runTest ./activation/etc-overlay-immutable.nix;
|
2023-10-17 16:40:26 +02:00
|
|
|
activation-perlless = runTest ./activation/perlless.nix;
|
2024-02-14 11:45:02 -03:00
|
|
|
etcd = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd.nix { };
|
|
|
|
etcd-cluster = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./etcd/etcd-cluster.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
etebase-server = runTest ./etebase-server.nix;
|
|
|
|
etesync-dav = runTest ./etesync-dav.nix;
|
2025-02-22 02:27:12 +01:00
|
|
|
evcc = runTest ./evcc.nix;
|
2025-03-30 20:08:47 +02:00
|
|
|
fail2ban = runTest ./fail2ban.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
fakeroute = runTest ./fakeroute.nix;
|
2025-04-18 21:28:41 +02:00
|
|
|
fancontrol = runTest ./fancontrol.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
fanout = runTest ./fanout.nix;
|
2023-03-12 14:19:03 +08:00
|
|
|
fcitx5 = handleTest ./fcitx5 { };
|
2024-06-26 22:17:12 -07:00
|
|
|
fedimintd = runTest ./fedimintd.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
fenics = runTest ./fenics.nix;
|
|
|
|
ferm = runTest ./ferm.nix;
|
2023-10-15 10:40:11 +02:00
|
|
|
ferretdb = handleTest ./ferretdb.nix { };
|
2024-11-03 15:54:52 +01:00
|
|
|
fider = runTest ./fider.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
filesender = runTest ./filesender.nix;
|
2025-05-28 21:13:33 +02:00
|
|
|
filebrowser = runTest ./filebrowser.nix;
|
2024-02-03 22:40:40 +01:00
|
|
|
filesystems-overlayfs = runTest ./filesystems-overlayfs.nix;
|
2025-03-31 22:56:18 +02:00
|
|
|
firefly-iii = runTest ./firefly-iii.nix;
|
2025-03-31 22:57:48 +02:00
|
|
|
firefly-iii-data-importer = runTest ./firefly-iii-data-importer.nix;
|
2025-03-10 19:17:52 +01:00
|
|
|
firefox = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.firefox;
|
|
|
|
};
|
|
|
|
firefox-beta = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.firefox-beta;
|
|
|
|
};
|
|
|
|
firefox-devedition = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.firefox-devedition;
|
|
|
|
};
|
|
|
|
firefox-esr = runTest {
|
|
|
|
# used in `tested` job
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.firefox-esr;
|
|
|
|
};
|
|
|
|
firefox-esr-128 = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.firefox-esr-128;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
firefoxpwa = runTest ./firefoxpwa.nix;
|
|
|
|
firejail = runTest ./firejail.nix;
|
2022-12-23 00:23:23 +08:00
|
|
|
firewall = handleTest ./firewall.nix { nftables = false; };
|
|
|
|
firewall-nftables = handleTest ./firewall.nix { nftables = true; };
|
2024-12-21 22:27:11 +02:00
|
|
|
fish = runTest ./fish.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
firezone = runTest ./firezone/firezone.nix;
|
2019-02-12 18:26:08 +01:00
|
|
|
flannel = handleTestOn [ "x86_64-linux" ] ./flannel.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
flaresolverr = runTest ./flaresolverr.nix;
|
|
|
|
flood = runTest ./flood.nix;
|
2025-03-12 23:47:01 +01:00
|
|
|
floorp = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.floorp;
|
|
|
|
};
|
2025-04-04 12:16:33 +01:00
|
|
|
fluent-bit = runTest ./fluent-bit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
fluentd = runTest ./fluentd.nix;
|
|
|
|
fluidd = runTest ./fluidd.nix;
|
|
|
|
fontconfig-default-fonts = runTest ./fontconfig-default-fonts.nix;
|
2025-03-24 18:38:09 +01:00
|
|
|
forgejo = import ./forgejo.nix {
|
|
|
|
inherit runTest;
|
|
|
|
forgejoPackage = pkgs.forgejo;
|
|
|
|
};
|
|
|
|
forgejo-lts = import ./forgejo.nix {
|
|
|
|
inherit runTest;
|
|
|
|
forgejoPackage = pkgs.forgejo-lts;
|
|
|
|
};
|
2025-03-21 17:00:00 +01:00
|
|
|
freenet = runTest ./freenet.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
freeswitch = runTest ./freeswitch.nix;
|
2023-10-30 06:49:08 +11:00
|
|
|
freetube = discoverTests (import ./freetube.nix);
|
2025-01-09 23:18:07 +01:00
|
|
|
freshrss = handleTest ./freshrss { };
|
2025-03-04 08:04:42 +01:00
|
|
|
frigate = runTest ./frigate.nix;
|
2025-03-23 16:23:27 +01:00
|
|
|
froide-govplan = runTest ./web-apps/froide-govplan.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
frp = runTest ./frp.nix;
|
|
|
|
frr = runTest ./frr.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
fsck = handleTest ./fsck.nix { };
|
2022-12-20 23:05:02 -05:00
|
|
|
fsck-systemd-stage-1 = handleTest ./fsck.nix { systemdStage1 = true; };
|
2025-05-24 23:40:23 +08:00
|
|
|
ft2-clone = runTest ./ft2-clone.nix;
|
|
|
|
legit = runTest ./legit.nix;
|
|
|
|
mimir = runTest ./mimir.nix;
|
|
|
|
gancio = runTest ./gancio.nix;
|
2022-10-15 22:40:34 +02:00
|
|
|
garage = handleTest ./garage { };
|
2024-09-19 21:34:10 +02:00
|
|
|
gatus = runTest ./gatus.nix;
|
2022-08-11 20:10:58 +10:00
|
|
|
gemstash = handleTest ./gemstash.nix { };
|
2025-03-24 19:15:47 -04:00
|
|
|
geoclue2 = runTest ./geoclue2.nix;
|
2023-11-17 23:29:45 +01:00
|
|
|
geoserver = runTest ./geoserver.nix;
|
2025-04-05 09:12:20 +02:00
|
|
|
gerrit = runTest ./gerrit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
geth = runTest ./geth.nix;
|
|
|
|
ghostunnel = runTest ./ghostunnel.nix;
|
|
|
|
gitdaemon = runTest ./gitdaemon.nix;
|
2023-02-24 02:59:30 +01:00
|
|
|
gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
|
2025-04-05 00:01:55 +02:00
|
|
|
github-runner = runTest ./github-runner.nix;
|
2023-05-11 07:07:37 +00:00
|
|
|
gitlab = runTest ./gitlab.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
gitolite = runTest ./gitolite.nix;
|
|
|
|
gitolite-fcgiwrap = runTest ./gitolite-fcgiwrap.nix;
|
2024-07-01 09:32:41 +02:00
|
|
|
glance = runTest ./glance.nix;
|
2024-04-01 22:44:08 +02:00
|
|
|
glances = runTest ./glances.nix;
|
2025-03-01 01:53:25 +01:00
|
|
|
glitchtip = runTest ./glitchtip.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
glusterfs = runTest ./glusterfs.nix;
|
2025-04-04 21:03:57 +02:00
|
|
|
gnome = runTest ./gnome.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
gnome-extensions = runTest ./gnome-extensions.nix;
|
|
|
|
gnome-flashback = runTest ./gnome-flashback.nix;
|
|
|
|
gnome-xorg = runTest ./gnome-xorg.nix;
|
|
|
|
gns3-server = runTest ./gns3-server.nix;
|
|
|
|
gnupg = runTest ./gnupg.nix;
|
|
|
|
goatcounter = runTest ./goatcounter.nix;
|
2025-02-24 15:26:44 +01:00
|
|
|
go-camo = handleTest ./go-camo.nix { };
|
2025-03-10 20:27:45 +01:00
|
|
|
go-neb = runTest ./go-neb.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
gobgpd = runTest ./gobgpd.nix;
|
|
|
|
gocd-agent = runTest ./gocd-agent.nix;
|
|
|
|
gocd-server = runTest ./gocd-server.nix;
|
2025-01-11 17:26:55 +00:00
|
|
|
gokapi = runTest ./gokapi.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
gollum = runTest ./gollum.nix;
|
|
|
|
gonic = runTest ./gonic.nix;
|
2019-05-16 21:29:17 -04:00
|
|
|
google-oslogin = handleTest ./google-oslogin { };
|
2025-05-24 23:40:23 +08:00
|
|
|
gopro-tool = runTest ./gopro-tool.nix;
|
|
|
|
goss = runTest ./goss.nix;
|
|
|
|
gotenberg = runTest ./gotenberg.nix;
|
|
|
|
gotify-server = runTest ./gotify-server.nix;
|
2023-05-19 21:18:17 +03:00
|
|
|
gotosocial = runTest ./web-apps/gotosocial.nix;
|
2022-09-18 13:35:07 +04:00
|
|
|
grafana = handleTest ./grafana { };
|
2025-05-24 23:40:23 +08:00
|
|
|
graphite = runTest ./graphite.nix;
|
2024-11-10 09:53:20 +01:00
|
|
|
grav = runTest ./web-apps/grav.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
graylog = runTest ./graylog.nix;
|
|
|
|
greetd-no-shadow = runTest ./greetd-no-shadow.nix;
|
2025-04-02 18:01:49 +02:00
|
|
|
grocy = runTest ./grocy.nix;
|
2023-10-16 16:58:19 +00:00
|
|
|
grow-partition = runTest ./grow-partition.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
grub = runTest ./grub.nix;
|
|
|
|
guacamole-server = runTest ./guacamole-server.nix;
|
2023-10-29 14:44:03 +08:00
|
|
|
guix = handleTest ./guix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
gvisor = runTest ./gvisor.nix;
|
2025-03-21 22:23:01 +07:00
|
|
|
h2o = import ./web-servers/h2o { inherit recurseIntoAttrs runTest; };
|
2022-01-08 18:38:34 +05:30
|
|
|
hadoop = import ./hadoop {
|
|
|
|
inherit handleTestOn;
|
|
|
|
package = pkgs.hadoop;
|
2024-06-24 09:25:57 +05:30
|
|
|
};
|
|
|
|
hadoop_3_3 = import ./hadoop {
|
|
|
|
inherit handleTestOn;
|
|
|
|
package = pkgs.hadoop_3_3;
|
2022-01-08 18:38:34 +05:30
|
|
|
};
|
|
|
|
hadoop2 = import ./hadoop {
|
|
|
|
inherit handleTestOn;
|
|
|
|
package = pkgs.hadoop2;
|
2025-04-01 20:10:43 +02:00
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
haste-server = runTest ./haste-server.nix;
|
2025-04-19 23:44:16 +02:00
|
|
|
haproxy = runTest ./haproxy.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
hardened = runTest ./hardened.nix;
|
2023-05-10 19:41:25 +03:00
|
|
|
harmonia = runTest ./harmonia.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
headscale = runTest ./headscale.nix;
|
|
|
|
healthchecks = runTest ./web-apps/healthchecks.nix;
|
2022-03-29 01:49:17 +05:30
|
|
|
hbase2 = handleTest ./hbase.nix { package = pkgs.hbase2; };
|
2024-06-24 18:59:06 +05:30
|
|
|
hbase_2_5 = handleTest ./hbase.nix { package = pkgs.hbase_2_5; };
|
2022-09-30 22:13:14 +05:30
|
|
|
hbase_2_4 = handleTest ./hbase.nix { package = pkgs.hbase_2_4; };
|
2022-03-29 01:49:17 +05:30
|
|
|
hbase3 = handleTest ./hbase.nix { package = pkgs.hbase3; };
|
2025-05-24 23:40:23 +08:00
|
|
|
hedgedoc = runTest ./hedgedoc.nix;
|
|
|
|
herbstluftwm = runTest ./herbstluftwm.nix;
|
|
|
|
homebox = runTest ./homebox.nix;
|
2024-12-27 18:36:59 +01:00
|
|
|
homer = handleTest ./homer { };
|
2025-04-04 21:16:05 +02:00
|
|
|
homepage-dashboard = runTest ./homepage-dashboard.nix;
|
2023-08-17 18:08:48 +02:00
|
|
|
honk = runTest ./honk.nix;
|
2020-11-29 20:00:38 -03:00
|
|
|
installed-tests = pkgs.recurseIntoAttrs (handleTest ./installed-tests { });
|
2025-05-24 23:40:23 +08:00
|
|
|
invidious = runTest ./invidious.nix;
|
|
|
|
iosched = runTest ./iosched.nix;
|
|
|
|
isolate = runTest ./isolate.nix;
|
|
|
|
livebook-service = runTest ./livebook-service.nix;
|
|
|
|
pyload = runTest ./pyload.nix;
|
2022-09-24 15:58:01 +10:00
|
|
|
oci-containers = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./oci-containers.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
odoo = runTest ./odoo.nix;
|
2025-05-28 11:47:24 +08:00
|
|
|
odoo17 = runTest {
|
|
|
|
imports = [ ./odoo.nix ];
|
|
|
|
_module.args.package = pkgs.odoo17;
|
|
|
|
};
|
|
|
|
odoo16 = runTest {
|
|
|
|
imports = [ ./odoo.nix ];
|
|
|
|
_module.args.package = pkgs.odoo16;
|
|
|
|
};
|
2025-03-19 16:22:04 +01:00
|
|
|
oncall = runTest ./web-apps/oncall.nix;
|
2020-03-26 14:33:57 +01:00
|
|
|
# 9pnet_virtio used to mount /nix partition doesn't support
|
|
|
|
# hibernation. This test happens to work on x86_64-linux but
|
|
|
|
# not on other platforms.
|
|
|
|
hibernate = handleTestOn [ "x86_64-linux" ] ./hibernate.nix { };
|
2022-04-13 12:48:20 +01:00
|
|
|
hibernate-systemd-stage-1 = handleTestOn [ "x86_64-linux" ] ./hibernate.nix {
|
|
|
|
systemdStage1 = true;
|
|
|
|
};
|
2018-11-11 20:30:07 +09:00
|
|
|
hitch = handleTest ./hitch { };
|
2025-05-24 23:40:23 +08:00
|
|
|
hledger-web = runTest ./hledger-web.nix;
|
|
|
|
hockeypuck = runTest ./hockeypuck.nix;
|
2024-09-02 01:54:06 +02:00
|
|
|
home-assistant = runTest ./home-assistant.nix;
|
2020-05-12 23:48:27 +02:00
|
|
|
hostname = handleTest ./hostname.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
hound = runTest ./hound.nix;
|
2025-04-19 23:21:00 +02:00
|
|
|
hub = runTest ./git/hub.nix;
|
2025-02-22 09:18:51 +10:00
|
|
|
hydra = runTest ./hydra;
|
2025-05-24 23:40:23 +08:00
|
|
|
i3wm = runTest ./i3wm.nix;
|
2025-03-29 21:54:28 +01:00
|
|
|
icingaweb2 = runTest ./icingaweb2.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ifm = runTest ./ifm.nix;
|
|
|
|
iftop = runTest ./iftop.nix;
|
|
|
|
immich = runTest ./web-apps/immich.nix;
|
|
|
|
immich-public-proxy = runTest ./web-apps/immich-public-proxy.nix;
|
|
|
|
incron = runTest ./incron.nix;
|
2024-12-22 19:33:23 -05:00
|
|
|
incus = pkgs.recurseIntoAttrs (
|
|
|
|
handleTest ./incus {
|
|
|
|
lts = false;
|
|
|
|
inherit system pkgs;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
incus-lts = pkgs.recurseIntoAttrs (handleTest ./incus { inherit system pkgs; });
|
2025-05-24 23:40:23 +08:00
|
|
|
influxdb = runTest ./influxdb.nix;
|
|
|
|
influxdb2 = runTest ./influxdb2.nix;
|
|
|
|
initrd-luks-empty-passphrase = runTest ./initrd-luks-empty-passphrase.nix;
|
2023-12-20 18:23:08 +09:00
|
|
|
initrd-network-openvpn = handleTestOn [ "x86_64-linux" "i686-linux" ] ./initrd-network-openvpn { };
|
2020-11-29 20:00:38 -03:00
|
|
|
initrd-network-ssh = handleTest ./initrd-network-ssh { };
|
2020-12-12 14:39:58 +01:00
|
|
|
initrd-secrets = handleTest ./initrd-secrets.nix { };
|
nixos/grub: Name initrd-secrets by system, not by initrd
Previously, secrets were named according to the initrd they were
associated with. This created a problem: If secrets were changed whilst
the initrd remained the same, there were two versions of the secrets
with one initrd. The result was that only one version of the secrets would
by recorded into the /boot partition and get used. AFAICT this would
only be the oldest version of the secrets for the given initrd version.
This manifests as #114594, which I found frustrating while trying to use
initrd secrets for the first time. While developing the secrets I found
I could not get new versions of the secrets to take effect.
Additionally, it's a nasty issue to run into if you had cause to change
the initrd secrets for credential rotation, etc, if you change them and
discover you cannot, or alternatively that you can't roll back as you
would expect.
Additional changes in this patch.
* Add a regression test that switching to another grub configuration
with the alternate secrets works. This test relies on the fact that it
is not changing the initrd. I have checked that the test fails if I
undo my change.
* Persist the useBootLoader disk state, similarly to other boot state.
* I had to do this, otherwise I could not find a route to testing the
alternate boot configuration. I did attempt a few different ways of
testing this, including directly running install-grub.pl, but what
I've settled on is most like what a user would do and avoids
depending on lots of internal details.
* Making tests that test the boot are a bit tricky (see hibernate.nix
and installer.nix for inspiration), I found that in addition to
having to copy quite a bit of code I still couldn't get things to
work as desired since the bootloader state was being clobbered.
My change to persist the useBootLoader state could break things,
conceptually. I need some help here discovering if that is the case,
possibly by letting this run through a staging CI if there is one.
Fix #114594.
cc potential reviewers:
@lopsided98 (original implementer) @joachifm (original reviewer),
@wkennington (numerous fixes to grub-install.pl), @lheckemann (wrote
original secrets test).
2023-01-05 12:28:32 +00:00
|
|
|
initrd-secrets-changing = handleTest ./initrd-secrets-changing.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
initrdNetwork = runTest ./initrd-network.nix;
|
|
|
|
input-remapper = runTest ./input-remapper.nix;
|
|
|
|
inspircd = runTest ./inspircd.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
installer = handleTest ./installer.nix { };
|
2022-04-17 17:24:13 -04:00
|
|
|
installer-systemd-stage-1 = handleTest ./installer-systemd-stage-1.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
intune = runTest ./intune.nix;
|
2025-03-30 20:28:38 +02:00
|
|
|
invoiceplane = runTest ./invoiceplane.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
iodine = runTest ./iodine.nix;
|
|
|
|
ipv6 = runTest ./ipv6.nix;
|
|
|
|
iscsi-multipath-root = runTest ./iscsi-multipath-root.nix;
|
|
|
|
iscsi-root = runTest ./iscsi-root.nix;
|
|
|
|
isso = runTest ./isso.nix;
|
|
|
|
jackett = runTest ./jackett.nix;
|
|
|
|
jellyfin = runTest ./jellyfin.nix;
|
|
|
|
jenkins = runTest ./jenkins.nix;
|
|
|
|
jenkins-cli = runTest ./jenkins-cli.nix;
|
|
|
|
jibri = runTest ./jibri.nix;
|
|
|
|
jirafeau = runTest ./jirafeau.nix;
|
|
|
|
jitsi-meet = runTest ./jitsi-meet.nix;
|
2023-07-01 18:50:08 +02:00
|
|
|
jool = import ./jool.nix { inherit pkgs runTest; };
|
2025-05-24 23:40:23 +08:00
|
|
|
jotta-cli = runTest ./jotta-cli.nix;
|
2022-07-21 23:13:20 -07:00
|
|
|
k3s = handleTest ./k3s { };
|
2024-06-05 17:01:01 +01:00
|
|
|
kafka = handleTest ./kafka { };
|
2025-03-26 16:34:31 +08:00
|
|
|
kanboard = runTest ./web-apps/kanboard.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
kanidm = runTest ./kanidm.nix;
|
|
|
|
kanidm-provisioning = runTest ./kanidm-provisioning.nix;
|
|
|
|
karma = runTest ./karma.nix;
|
|
|
|
kavita = runTest ./kavita.nix;
|
|
|
|
kbd-setfont-decompress = runTest ./kbd-setfont-decompress.nix;
|
|
|
|
kbd-update-search-paths-patch = runTest ./kbd-update-search-paths-patch.nix;
|
2025-03-10 20:23:59 +01:00
|
|
|
kea = runTest ./kea.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
keepalived = runTest ./keepalived.nix;
|
|
|
|
keepassxc = runTest ./keepassxc.nix;
|
2019-01-11 04:36:51 +00:00
|
|
|
kerberos = handleTest ./kerberos/default.nix { };
|
2021-04-07 11:57:58 -04:00
|
|
|
kernel-generic = handleTest ./kernel-generic.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
kernel-latest-ath-user-regd = runTest ./kernel-latest-ath-user-regd.nix;
|
2024-03-27 16:15:37 +01:00
|
|
|
kernel-rust = handleTest ./kernel-rust.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
keter = runTest ./keter.nix;
|
2025-04-17 20:19:29 +02:00
|
|
|
kexec = runTest ./kexec.nix;
|
2020-10-26 15:33:57 +01:00
|
|
|
keycloak = discoverTests (import ./keycloak.nix);
|
2023-03-15 15:15:38 +02:00
|
|
|
keyd = handleTest ./keyd.nix { };
|
2018-11-11 20:30:07 +09:00
|
|
|
keymap = handleTest ./keymap.nix { };
|
2025-04-04 23:56:15 +02:00
|
|
|
kimai = runTest ./kimai.nix;
|
2025-02-09 20:57:07 -08:00
|
|
|
kismet = runTest ./kismet.nix;
|
2025-01-01 10:10:00 +08:00
|
|
|
kmonad = runTest ./kmonad.nix;
|
2025-03-10 20:30:17 +01:00
|
|
|
knot = runTest ./knot.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
komga = runTest ./komga.nix;
|
2023-12-23 22:40:56 -06:00
|
|
|
krb5 = discoverTests (import ./krb5);
|
2025-05-24 23:40:23 +08:00
|
|
|
ksm = runTest ./ksm.nix;
|
|
|
|
kthxbye = runTest ./kthxbye.nix;
|
2021-07-30 16:16:23 +01:00
|
|
|
kubernetes = handleTestOn [ "x86_64-linux" ] ./kubernetes { };
|
2023-10-08 18:56:05 +02:00
|
|
|
kubo = import ./kubo { inherit recurseIntoAttrs runTest; };
|
2025-05-29 19:55:13 +05:30
|
|
|
lact = runTest ./lact.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ladybird = runTest ./ladybird.nix;
|
|
|
|
languagetool = runTest ./languagetool.nix;
|
|
|
|
lanraragi = runTest ./lanraragi.nix;
|
2025-05-27 16:22:37 +02:00
|
|
|
latestKernel.login = runTest {
|
|
|
|
imports = [ ./login.nix ];
|
|
|
|
_module.args.latestKernel = true;
|
|
|
|
};
|
2025-05-05 09:50:40 +02:00
|
|
|
lasuite-docs = runTest ./web-apps/lasuite-docs.nix;
|
2024-09-26 19:01:36 +02:00
|
|
|
lavalink = runTest ./lavalink.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
leaps = runTest ./leaps.nix;
|
|
|
|
lemmy = runTest ./lemmy.nix;
|
|
|
|
libinput = runTest ./libinput.nix;
|
2025-04-04 13:44:11 +02:00
|
|
|
librenms = runTest ./librenms.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
libresprite = runTest ./libresprite.nix;
|
2024-05-09 20:22:57 +02:00
|
|
|
libreswan = runTest ./libreswan.nix;
|
2024-05-09 20:24:56 +02:00
|
|
|
libreswan-nat = runTest ./libreswan-nat.nix;
|
2025-03-12 23:47:01 +01:00
|
|
|
librewolf = runTest {
|
|
|
|
imports = [ ./firefox.nix ];
|
|
|
|
_module.args.firefoxPackage = pkgs.librewolf;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
libuiohook = runTest ./libuiohook.nix;
|
|
|
|
libvirtd = runTest ./libvirtd.nix;
|
|
|
|
lidarr = runTest ./lidarr.nix;
|
|
|
|
lightdm = runTest ./lightdm.nix;
|
2025-04-04 14:14:45 +02:00
|
|
|
lighttpd = runTest ./lighttpd.nix;
|
2025-04-29 01:02:53 -04:00
|
|
|
livekit = runTest ./networking/livekit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
limesurvey = runTest ./limesurvey.nix;
|
2025-03-02 13:17:25 +01:00
|
|
|
limine = import ./limine { inherit runTest; };
|
2023-08-23 17:50:28 +02:00
|
|
|
listmonk = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./listmonk.nix { };
|
2025-03-16 10:37:16 +01:00
|
|
|
litellm = runTest ./litellm.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
litestream = runTest ./litestream.nix;
|
2025-04-29 01:03:33 -04:00
|
|
|
lk-jwt-service = runTest ./matrix/lk-jwt-service.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
lldap = runTest ./lldap.nix;
|
|
|
|
localsend = runTest ./localsend.nix;
|
|
|
|
locate = runTest ./locate.nix;
|
|
|
|
login = runTest ./login.nix;
|
2025-04-19 22:57:48 +02:00
|
|
|
logrotate = runTest ./logrotate.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
loki = runTest ./loki.nix;
|
|
|
|
luks = runTest ./luks.nix;
|
2022-02-01 18:21:11 +01:00
|
|
|
lvm2 = handleTest ./lvm2 { };
|
2024-05-08 13:52:25 +02:00
|
|
|
lxc = handleTest ./lxc { };
|
2023-09-04 15:19:34 -04:00
|
|
|
lxd = pkgs.recurseIntoAttrs (handleTest ./lxd { inherit handleTestOn; });
|
2025-05-24 23:40:23 +08:00
|
|
|
lxd-image-server = runTest ./lxd-image-server.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
#logstash = handleTest ./logstash.nix {};
|
2024-08-05 23:12:50 +02:00
|
|
|
lomiri = discoverTests (import ./lomiri.nix);
|
2024-06-19 16:23:11 +02:00
|
|
|
lomiri-calculator-app = runTest ./lomiri-calculator-app.nix;
|
2025-02-13 20:14:15 +01:00
|
|
|
lomiri-calendar-app = runTest ./lomiri-calendar-app.nix;
|
2024-07-24 19:18:05 +02:00
|
|
|
lomiri-camera-app = runTest ./lomiri-camera-app.nix;
|
2024-06-29 21:24:57 +02:00
|
|
|
lomiri-clock-app = runTest ./lomiri-clock-app.nix;
|
2024-08-24 23:09:29 +02:00
|
|
|
lomiri-docviewer-app = runTest ./lomiri-docviewer-app.nix;
|
2024-06-07 11:37:49 +02:00
|
|
|
lomiri-filemanager-app = runTest ./lomiri-filemanager-app.nix;
|
2024-11-27 19:31:56 +01:00
|
|
|
lomiri-mediaplayer-app = runTest ./lomiri-mediaplayer-app.nix;
|
2025-02-09 15:39:44 +01:00
|
|
|
lomiri-music-app = runTest ./lomiri-music-app.nix;
|
2024-08-14 15:26:08 +02:00
|
|
|
lomiri-gallery-app = runTest ./lomiri-gallery-app.nix;
|
2025-03-04 13:35:19 +01:00
|
|
|
lomiri-system-settings = runTest ./lomiri-system-settings.nix;
|
2019-11-05 11:57:05 +01:00
|
|
|
lorri = handleTest ./lorri/default.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
lxqt = runTest ./lxqt.nix;
|
|
|
|
ly = runTest ./ly.nix;
|
2023-04-21 08:59:13 +02:00
|
|
|
maddy = discoverTests (import ./maddy { inherit handleTest; });
|
2025-05-24 23:40:23 +08:00
|
|
|
maestral = runTest ./maestral.nix;
|
2025-04-01 12:09:48 +00:00
|
|
|
magic-wormhole-mailbox-server = runTest ./magic-wormhole-mailbox-server.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
magnetico = runTest ./magnetico.nix;
|
2025-03-30 01:24:16 +01:00
|
|
|
mailcatcher = runTest ./mailcatcher.nix;
|
2025-04-16 10:12:28 +02:00
|
|
|
mailhog = runTest ./mailhog.nix;
|
2025-04-05 00:50:41 +02:00
|
|
|
mailpit = runTest ./mailpit.nix;
|
2025-04-16 13:24:44 +02:00
|
|
|
mailman = runTest ./mailman.nix;
|
2025-04-19 22:21:12 +02:00
|
|
|
man = runTest ./man.nix;
|
2021-12-08 09:47:07 +00:00
|
|
|
mariadb-galera = handleTest ./mysql/mariadb-galera.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
marytts = runTest ./marytts.nix;
|
2024-07-04 18:07:44 +02:00
|
|
|
mastodon = pkgs.recurseIntoAttrs (handleTest ./web-apps/mastodon { inherit handleTestOn; });
|
2023-03-25 17:02:52 +01:00
|
|
|
pixelfed = discoverTests (import ./web-apps/pixelfed { inherit handleTestOn; });
|
2025-05-24 23:40:23 +08:00
|
|
|
mate = runTest ./mate.nix;
|
|
|
|
mate-wayland = runTest ./mate-wayland.nix;
|
|
|
|
matter-server = runTest ./matter-server.nix;
|
2025-01-15 12:42:39 +01:00
|
|
|
matomo = runTest ./matomo.nix;
|
2025-02-08 21:50:53 +02:00
|
|
|
matrix-alertmanager = runTest ./matrix/matrix-alertmanager.nix;
|
2024-09-04 20:35:52 +02:00
|
|
|
matrix-appservice-irc = runTest ./matrix/appservice-irc.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
matrix-conduit = runTest ./matrix/conduit.nix;
|
2025-05-05 10:25:57 -04:00
|
|
|
matrix-continuwuity = runTest ./matrix/continuwuity.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
matrix-synapse = runTest ./matrix/synapse.nix;
|
|
|
|
matrix-synapse-workers = runTest ./matrix/synapse-workers.nix;
|
2024-10-21 23:05:06 -07:00
|
|
|
mattermost = handleTest ./mattermost { };
|
2025-05-24 23:40:23 +08:00
|
|
|
mautrix-meta-postgres = runTest ./matrix/mautrix-meta-postgres.nix;
|
|
|
|
mautrix-meta-sqlite = runTest ./matrix/mautrix-meta-sqlite.nix;
|
|
|
|
mealie = runTest ./mealie.nix;
|
|
|
|
mediamtx = runTest ./mediamtx.nix;
|
2022-01-23 12:11:05 +01:00
|
|
|
mediatomb = handleTest ./mediatomb.nix { };
|
2019-06-05 21:19:11 -04:00
|
|
|
mediawiki = handleTest ./mediawiki.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
meilisearch = runTest ./meilisearch.nix;
|
2025-04-16 13:30:49 +02:00
|
|
|
memcached = runTest ./memcached.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
merecat = runTest ./merecat.nix;
|
|
|
|
metabase = runTest ./metabase.nix;
|
|
|
|
mihomo = runTest ./mihomo.nix;
|
|
|
|
mindustry = runTest ./mindustry.nix;
|
|
|
|
minecraft = runTest ./minecraft.nix;
|
|
|
|
minecraft-server = runTest ./minecraft-server.nix;
|
|
|
|
minidlna = runTest ./minidlna.nix;
|
|
|
|
miniflux = runTest ./miniflux.nix;
|
|
|
|
minio = runTest ./minio.nix;
|
2024-06-10 15:55:54 +02:00
|
|
|
miracle-wm = runTest ./miracle-wm.nix;
|
2025-03-22 13:55:56 +01:00
|
|
|
miriway = runTest ./miriway.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
misc = runTest ./misc.nix;
|
|
|
|
misskey = runTest ./misskey.nix;
|
|
|
|
mjolnir = runTest ./matrix/mjolnir.nix;
|
2025-01-16 11:38:53 +01:00
|
|
|
mobilizon = runTest ./mobilizon.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
mod_perl = runTest ./mod_perl.nix;
|
|
|
|
molly-brown = runTest ./molly-brown.nix;
|
|
|
|
mollysocket = runTest ./mollysocket.nix;
|
|
|
|
monado = runTest ./monado.nix;
|
|
|
|
monetdb = runTest ./monetdb.nix;
|
2025-03-29 21:47:04 +01:00
|
|
|
monica = runTest ./web-apps/monica.nix;
|
2025-01-21 16:28:54 +01:00
|
|
|
mongodb = runTest ./mongodb.nix;
|
2025-01-21 17:27:18 +01:00
|
|
|
mongodb-ce = runTest (
|
|
|
|
{ config, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./mongodb.nix ];
|
|
|
|
defaults.services.mongodb.package = config.node.pkgs.mongodb-ce;
|
|
|
|
}
|
|
|
|
);
|
2025-04-04 20:49:57 +02:00
|
|
|
moodle = runTest ./moodle.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
moonraker = runTest ./moonraker.nix;
|
|
|
|
mopidy = runTest ./mopidy.nix;
|
2025-03-22 13:57:56 +01:00
|
|
|
morph-browser = runTest ./morph-browser.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
morty = runTest ./morty.nix;
|
2025-04-02 19:07:43 +02:00
|
|
|
mosquitto = runTest ./mosquitto.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
moosefs = runTest ./moosefs.nix;
|
2025-04-02 03:37:58 +07:00
|
|
|
movim = import ./web-apps/movim { inherit recurseIntoAttrs runTest; };
|
2025-04-16 13:39:11 +02:00
|
|
|
mpd = runTest ./mpd.nix;
|
2025-04-02 17:26:41 +02:00
|
|
|
mpv = runTest ./mpv.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
mtp = runTest ./mtp.nix;
|
|
|
|
multipass = runTest ./multipass.nix;
|
2025-04-05 10:02:19 +02:00
|
|
|
mumble = runTest ./mumble.nix;
|
2023-02-04 12:16:53 +02:00
|
|
|
# Fails on aarch64-linux at the PDF creation step - need to debug this on an
|
|
|
|
# aarch64 machine..
|
|
|
|
musescore = handleTestOn [ "x86_64-linux" ] ./musescore.nix { };
|
2024-05-18 01:10:54 +02:00
|
|
|
music-assistant = runTest ./music-assistant.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
munin = runTest ./munin.nix;
|
|
|
|
mutableUsers = runTest ./mutable-users.nix;
|
2024-03-18 17:40:30 +01:00
|
|
|
mycelium = handleTest ./mycelium { };
|
2025-05-24 23:40:23 +08:00
|
|
|
mympd = runTest ./mympd.nix;
|
2020-04-02 23:40:55 +03:00
|
|
|
mysql = handleTest ./mysql/mysql.nix { };
|
|
|
|
mysql-autobackup = handleTest ./mysql/mysql-autobackup.nix { };
|
|
|
|
mysql-backup = handleTest ./mysql/mysql-backup.nix { };
|
|
|
|
mysql-replication = handleTest ./mysql/mysql-replication.nix { };
|
2025-03-31 16:05:31 +02:00
|
|
|
n8n = runTest ./n8n.nix;
|
2024-05-03 20:40:22 +02:00
|
|
|
nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
nar-serve = runTest ./nar-serve.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
|
|
|
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
|
2022-12-23 00:23:23 +08:00
|
|
|
nat.nftables.firewall = handleTest ./nat.nix {
|
|
|
|
withFirewall = true;
|
|
|
|
nftables = true;
|
|
|
|
};
|
|
|
|
nat.nftables.standalone = handleTest ./nat.nix {
|
|
|
|
withFirewall = false;
|
|
|
|
nftables = true;
|
2025-04-01 20:10:43 +02:00
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
nats = runTest ./nats.nix;
|
|
|
|
navidrome = runTest ./navidrome.nix;
|
|
|
|
nbd = runTest ./nbd.nix;
|
|
|
|
ncdns = runTest ./ncdns.nix;
|
2025-01-01 17:15:26 -08:00
|
|
|
ncps = runTest ./ncps.nix;
|
|
|
|
ncps-custom-cache-datapath = runTest {
|
|
|
|
imports = [ ./ncps.nix ];
|
|
|
|
defaults.services.ncps.cache.dataPath = "/path/to/ncps";
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
ndppd = runTest ./ndppd.nix;
|
|
|
|
nebula = runTest ./nebula.nix;
|
2019-02-01 14:29:54 +01:00
|
|
|
neo4j = handleTest ./neo4j.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
netbird = runTest ./netbird.nix;
|
|
|
|
netdata = runTest ./netdata.nix;
|
|
|
|
nimdow = runTest ./nimdow.nix;
|
|
|
|
nix-channel = pkgs.callPackage ../modules/config/nix-channel/test.nix { };
|
2024-03-16 21:05:56 +01:00
|
|
|
networking.scripted = handleTest ./networking/networkd-and-scripted.nix { networkd = false; };
|
|
|
|
networking.networkd = handleTest ./networking/networkd-and-scripted.nix { networkd = true; };
|
2024-03-01 01:38:35 +01:00
|
|
|
networking.networkmanager = handleTest ./networking/networkmanager.nix { };
|
2025-03-29 10:04:56 +01:00
|
|
|
netbox_3_7 = handleTest ./web-apps/netbox/default.nix { netbox = pkgs.netbox_3_7; };
|
|
|
|
netbox_4_1 = handleTest ./web-apps/netbox/default.nix { netbox = pkgs.netbox_4_1; };
|
|
|
|
netbox_4_2 = handleTest ./web-apps/netbox/default.nix { netbox = pkgs.netbox_4_2; };
|
2025-05-24 23:40:23 +08:00
|
|
|
netbox-upgrade = runTest ./web-apps/netbox-upgrade.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
# TODO: put in networking.nix after the test becomes more complete
|
2025-05-24 23:40:23 +08:00
|
|
|
networkingProxy = runTest ./networking-proxy.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
nextcloud = handleTest ./nextcloud { };
|
2025-04-16 13:47:54 +02:00
|
|
|
nextflow = runTestOn [ "x86_64-linux" ] ./nextflow.nix;
|
2024-05-20 14:54:08 +02:00
|
|
|
nextjs-ollama-llm-ui = runTest ./web-apps/nextjs-ollama-llm-ui.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
nexus = runTest ./nexus.nix;
|
2019-11-27 14:37:27 +00:00
|
|
|
# TODO: Test nfsv3 + Kerberos
|
|
|
|
nfs3 = handleTest ./nfs { version = 3; };
|
|
|
|
nfs4 = handleTest ./nfs { version = 4; };
|
2025-05-24 23:40:23 +08:00
|
|
|
nghttpx = runTest ./nghttpx.nix;
|
2025-03-29 23:45:36 +01:00
|
|
|
nginx = runTest ./nginx.nix;
|
2025-03-29 23:47:25 +01:00
|
|
|
nginx-auth = runTest ./nginx-auth.nix;
|
2025-03-29 23:48:17 +01:00
|
|
|
nginx-etag = runTest ./nginx-etag.nix;
|
2025-03-29 23:49:32 +01:00
|
|
|
nginx-etag-compression = runTest ./nginx-etag-compression.nix;
|
2025-03-29 23:50:31 +01:00
|
|
|
nginx-globalredirect = runTest ./nginx-globalredirect.nix;
|
2025-03-30 18:07:09 +02:00
|
|
|
nginx-http3 = import ./nginx-http3.nix { inherit pkgs runTest; };
|
2025-03-29 23:51:25 +01:00
|
|
|
nginx-mime = runTest ./nginx-mime.nix;
|
2025-03-29 23:52:25 +01:00
|
|
|
nginx-modsecurity = runTest ./nginx-modsecurity.nix;
|
2025-03-29 23:53:26 +01:00
|
|
|
nginx-moreheaders = runTest ./nginx-moreheaders.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
nginx-njs = runTest ./nginx-njs.nix;
|
2025-03-30 03:22:00 +02:00
|
|
|
nginx-proxyprotocol = runTest ./nginx-proxyprotocol/default.nix;
|
2025-03-30 03:25:08 +02:00
|
|
|
nginx-pubhtml = runTest ./nginx-pubhtml.nix;
|
2025-03-30 03:31:10 +02:00
|
|
|
nginx-redirectcode = runTest ./nginx-redirectcode.nix;
|
2025-03-30 14:03:48 +02:00
|
|
|
nginx-sso = runTest ./nginx-sso.nix;
|
2025-03-30 14:07:00 +02:00
|
|
|
nginx-status-page = runTest ./nginx-status-page.nix;
|
2025-03-30 15:15:50 +02:00
|
|
|
nginx-tmpdir = runTest ./nginx-tmpdir.nix;
|
2025-03-30 17:54:41 +02:00
|
|
|
nginx-unix-socket = runTest ./nginx-unix-socket.nix;
|
2025-03-30 18:00:36 +02:00
|
|
|
nginx-variants = import ./nginx-variants.nix { inherit pkgs runTest; };
|
2025-03-30 03:14:28 +02:00
|
|
|
nifi = runTestOn [ "x86_64-linux" ] ./web-apps/nifi.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
nitter = runTest ./nitter.nix;
|
|
|
|
nix-config = runTest ./nix-config.nix;
|
2025-04-17 02:02:34 +02:00
|
|
|
nix-ld = runTest ./nix-ld.nix;
|
2024-05-30 18:09:46 +03:00
|
|
|
nix-misc = handleTest ./nix/misc.nix { };
|
2024-08-18 00:31:38 -04:00
|
|
|
nix-upgrade = handleTest ./nix/upgrade.nix { inherit (pkgs) nixVersions; };
|
2023-10-17 15:25:17 +03:00
|
|
|
nix-required-mounts = runTest ./nix-required-mounts;
|
2024-09-17 15:01:35 +02:00
|
|
|
nix-serve = runTest ./nix-serve.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
nix-serve-ssh = runTest ./nix-serve-ssh.nix;
|
2021-10-18 00:38:58 +02:00
|
|
|
nixops = handleTest ./nixops/default.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
nixos-generate-config = runTest ./nixos-generate-config.nix;
|
2023-10-23 11:00:20 +01:00
|
|
|
nixos-rebuild-install-bootloader = handleTestOn [
|
|
|
|
"x86_64-linux"
|
|
|
|
] ./nixos-rebuild-install-bootloader.nix { };
|
2024-12-05 22:52:38 +00:00
|
|
|
nixos-rebuild-install-bootloader-ng = handleTestOn [
|
|
|
|
"x86_64-linux"
|
|
|
|
] ./nixos-rebuild-install-bootloader.nix { withNg = true; };
|
2024-12-09 12:20:30 +00:00
|
|
|
nixos-rebuild-specialisations = runTestOn [ "x86_64-linux" ] {
|
|
|
|
imports = [ ./nixos-rebuild-specialisations.nix ];
|
|
|
|
_module.args.withNg = false;
|
|
|
|
};
|
|
|
|
nixos-rebuild-specialisations-ng = runTestOn [ "x86_64-linux" ] {
|
|
|
|
imports = [ ./nixos-rebuild-specialisations.nix ];
|
|
|
|
_module.args.withNg = true;
|
|
|
|
};
|
2024-12-10 12:50:12 +00:00
|
|
|
nixos-rebuild-target-host = runTest {
|
|
|
|
imports = [ ./nixos-rebuild-target-host.nix ];
|
|
|
|
_module.args.withNg = false;
|
|
|
|
};
|
|
|
|
nixos-rebuild-target-host-ng = runTest {
|
|
|
|
imports = [ ./nixos-rebuild-target-host.nix ];
|
|
|
|
_module.args.withNg = true;
|
|
|
|
};
|
2021-12-03 12:04:36 +00:00
|
|
|
nixpkgs = pkgs.callPackage ../modules/misc/nixpkgs/test.nix { inherit evalMinimalConfig; };
|
2025-05-24 23:40:23 +08:00
|
|
|
nixseparatedebuginfod = runTest ./nixseparatedebuginfod.nix;
|
2025-03-30 00:22:55 +01:00
|
|
|
node-red = runTest ./node-red.nix;
|
2025-03-04 00:19:06 +01:00
|
|
|
nomad = runTest ./nomad.nix;
|
2022-06-22 04:10:44 +02:00
|
|
|
non-default-filesystems = handleTest ./non-default-filesystems.nix { };
|
2023-10-14 01:29:05 +02:00
|
|
|
non-switchable-system = runTest ./non-switchable-system.nix;
|
2025-04-23 19:47:51 +02:00
|
|
|
noto-fonts = runTest ./noto-fonts.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
noto-fonts-cjk-qt-default-weight = runTest ./noto-fonts-cjk-qt-default-weight.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
novacomd = handleTestOn [ "x86_64-linux" ] ./novacomd.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
npmrc = runTest ./npmrc.nix;
|
|
|
|
nscd = runTest ./nscd.nix;
|
|
|
|
nsd = runTest ./nsd.nix;
|
2022-09-01 14:36:19 +02:00
|
|
|
ntfy-sh = handleTest ./ntfy-sh.nix { };
|
2024-01-09 22:03:21 +01:00
|
|
|
ntfy-sh-migration = handleTest ./ntfy-sh-migration.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
ntpd = runTest ./ntpd.nix;
|
|
|
|
ntpd-rs = runTest ./ntpd-rs.nix;
|
2024-08-22 17:51:54 +00:00
|
|
|
nvidia-container-toolkit = runTest ./nvidia-container-toolkit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
nvmetcfg = runTest ./nvmetcfg.nix;
|
|
|
|
nzbget = runTest ./nzbget.nix;
|
|
|
|
nzbhydra2 = runTest ./nzbhydra2.nix;
|
|
|
|
ocis = runTest ./ocis.nix;
|
2024-04-06 23:41:28 +02:00
|
|
|
oddjobd = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./oddjobd.nix { };
|
2025-04-16 14:12:28 +02:00
|
|
|
obs-studio = runTest ./obs-studio.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
oh-my-zsh = runTest ./oh-my-zsh.nix;
|
2025-04-01 02:33:56 +02:00
|
|
|
olivetin = runTest ./olivetin.nix;
|
2024-07-13 17:26:29 -04:00
|
|
|
ollama = runTest ./ollama.nix;
|
|
|
|
ollama-cuda = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./ollama-cuda.nix;
|
|
|
|
ollama-rocm = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./ollama-rocm.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ombi = runTest ./ombi.nix;
|
|
|
|
openarena = runTest ./openarena.nix;
|
2025-03-31 20:21:23 +01:00
|
|
|
openbao = runTest ./openbao.nix;
|
2025-05-20 12:53:44 +03:00
|
|
|
opencloud = runTest ./opencloud.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
openldap = runTest ./openldap.nix;
|
|
|
|
openresty-lua = runTest ./openresty-lua.nix;
|
2023-02-15 16:11:39 +01:00
|
|
|
opensearch = discoverTests (import ./opensearch.nix);
|
2018-11-11 20:30:07 +09:00
|
|
|
opensmtpd = handleTest ./opensmtpd.nix { };
|
2021-05-19 22:37:49 +02:00
|
|
|
opensmtpd-rspamd = handleTest ./opensmtpd-rspamd.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
opensnitch = runTest ./opensnitch.nix;
|
|
|
|
openssh = runTest ./openssh.nix;
|
|
|
|
octoprint = runTest ./octoprint.nix;
|
2019-01-28 15:09:48 +01:00
|
|
|
openstack-image-metadata =
|
|
|
|
(handleTestOn [ "x86_64-linux" ] ./openstack-image.nix { }).metadata or { };
|
2020-11-29 20:00:38 -03:00
|
|
|
openstack-image-userdata =
|
|
|
|
(handleTestOn [ "x86_64-linux" ] ./openstack-image.nix { }).userdata or { };
|
2025-05-24 23:40:23 +08:00
|
|
|
opentabletdriver = runTest ./opentabletdriver.nix;
|
|
|
|
opentelemetry-collector = runTest ./opentelemetry-collector.nix;
|
|
|
|
open-web-calendar = runTest ./web-apps/open-web-calendar.nix;
|
2023-11-02 01:28:20 +01:00
|
|
|
ocsinventory-agent = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./ocsinventory-agent.nix { };
|
2025-03-14 09:09:38 +01:00
|
|
|
orthanc = runTest ./orthanc.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
owncast = runTest ./owncast.nix;
|
|
|
|
outline = runTest ./outline.nix;
|
2025-05-18 18:21:47 +03:00
|
|
|
i18n = runTest ./i18n.nix;
|
2020-12-20 21:18:54 +01:00
|
|
|
image-contents = handleTest ./image-contents.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
openvscode-server = runTest ./openvscode-server.nix;
|
2024-06-04 16:07:06 +05:30
|
|
|
open-webui = runTest ./open-webui.nix;
|
2024-09-26 09:26:10 -04:00
|
|
|
openvswitch = runTest ./openvswitch.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
orangefs = runTest ./orangefs.nix;
|
2019-06-09 20:26:05 +02:00
|
|
|
os-prober = handleTestOn [ "x86_64-linux" ] ./os-prober.nix { };
|
2023-07-19 11:59:22 +02:00
|
|
|
osquery = handleTestOn [ "x86_64-linux" ] ./osquery.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
osrm-backend = runTest ./osrm-backend.nix;
|
|
|
|
overlayfs = runTest ./overlayfs.nix;
|
|
|
|
pacemaker = runTest ./pacemaker.nix;
|
|
|
|
packagekit = runTest ./packagekit.nix;
|
|
|
|
pam-file-contents = runTest ./pam/pam-file-contents.nix;
|
|
|
|
pam-oath-login = runTest ./pam/pam-oath-login.nix;
|
|
|
|
pam-u2f = runTest ./pam/pam-u2f.nix;
|
|
|
|
pam-ussh = runTest ./pam/pam-ussh.nix;
|
|
|
|
pam-zfs-key = runTest ./pam/zfs-key.nix;
|
2025-03-17 22:56:10 +00:00
|
|
|
paretosecurity = runTest ./paretosecurity.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
pass-secret-service = runTest ./pass-secret-service.nix;
|
2022-11-23 18:53:04 +01:00
|
|
|
patroni = handleTestOn [ "x86_64-linux" ] ./patroni.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
pantalaimon = runTest ./matrix/pantalaimon.nix;
|
|
|
|
pantheon = runTest ./pantheon.nix;
|
|
|
|
pantheon-wayland = runTest ./pantheon-wayland.nix;
|
|
|
|
paperless = runTest ./paperless.nix;
|
2021-06-02 18:19:37 +02:00
|
|
|
parsedmarc = handleTest ./parsedmarc { };
|
2025-05-24 23:40:23 +08:00
|
|
|
password-option-override-ordering = runTest ./password-option-override-ordering.nix;
|
2025-05-12 18:58:49 +02:00
|
|
|
pdns-recursor = runTest ./pdns-recursor.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
pds = runTest ./pds.nix;
|
|
|
|
peerflix = runTest ./peerflix.nix;
|
|
|
|
peering-manager = runTest ./web-apps/peering-manager.nix;
|
2021-05-31 14:23:06 +03:00
|
|
|
peertube = handleTestOn [ "x86_64-linux" ] ./web-apps/peertube.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
peroxide = runTest ./peroxide.nix;
|
2025-03-04 00:42:31 +01:00
|
|
|
pgadmin4 = runTest ./pgadmin4.nix;
|
2025-04-25 14:37:36 +02:00
|
|
|
pgbackrest = import ./pgbackrest { inherit runTest; };
|
2025-05-24 23:40:23 +08:00
|
|
|
pgbouncer = runTest ./pgbouncer.nix;
|
2023-11-23 13:59:27 +03:00
|
|
|
pghero = runTest ./pghero.nix;
|
2025-02-15 15:54:40 +07:00
|
|
|
pgweb = runTest ./pgweb.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
pgmanage = runTest ./pgmanage.nix;
|
|
|
|
phosh = runTest ./phosh.nix;
|
|
|
|
photonvision = runTest ./photonvision.nix;
|
|
|
|
photoprism = runTest ./photoprism.nix;
|
2025-03-14 19:11:10 +01:00
|
|
|
php = import ./php/default.nix {
|
|
|
|
inherit runTest;
|
|
|
|
php = pkgs.php;
|
|
|
|
};
|
|
|
|
php81 = import ./php/default.nix {
|
|
|
|
inherit runTest;
|
|
|
|
php = pkgs.php81;
|
|
|
|
};
|
|
|
|
php82 = import ./php/default.nix {
|
|
|
|
inherit runTest;
|
|
|
|
php = pkgs.php82;
|
|
|
|
};
|
|
|
|
php83 = import ./php/default.nix {
|
|
|
|
inherit runTest;
|
|
|
|
php = pkgs.php83;
|
|
|
|
};
|
|
|
|
php84 = import ./php/default.nix {
|
|
|
|
inherit runTest;
|
|
|
|
php = pkgs.php84;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
phylactery = runTest ./web-apps/phylactery.nix;
|
|
|
|
pict-rs = runTest ./pict-rs.nix;
|
|
|
|
pingvin-share = runTest ./pingvin-share.nix;
|
2025-03-10 20:31:40 +01:00
|
|
|
pinnwand = runTest ./pinnwand.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
plantuml-server = runTest ./plantuml-server.nix;
|
|
|
|
plasma-bigscreen = runTest ./plasma-bigscreen.nix;
|
|
|
|
plasma5 = runTest ./plasma5.nix;
|
|
|
|
plasma6 = runTest ./plasma6.nix;
|
|
|
|
plasma5-systemd-start = runTest ./plasma5-systemd-start.nix;
|
|
|
|
plausible = runTest ./plausible.nix;
|
|
|
|
playwright-python = runTest ./playwright-python.nix;
|
|
|
|
please = runTest ./please.nix;
|
2020-11-08 15:10:14 +01:00
|
|
|
pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
plikd = runTest ./plikd.nix;
|
|
|
|
plotinus = runTest ./plotinus.nix;
|
|
|
|
pocket-id = runTest ./pocket-id.nix;
|
|
|
|
podgrab = runTest ./podgrab.nix;
|
2022-09-24 15:58:15 +10:00
|
|
|
podman = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./podman/default.nix { };
|
|
|
|
podman-tls-ghostunnel = handleTestOn [
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
] ./podman/tls-ghostunnel.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
polaris = runTest ./polaris.nix;
|
2021-01-08 03:03:00 +00:00
|
|
|
pomerium = handleTestOn [ "x86_64-linux" ] ./pomerium.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
portunus = runTest ./portunus.nix;
|
2020-07-06 03:37:56 +02:00
|
|
|
postfix = handleTest ./postfix.nix { };
|
|
|
|
postfix-raise-smtpd-tls-security-level =
|
|
|
|
handleTest ./postfix-raise-smtpd-tls-security-level.nix
|
|
|
|
{ };
|
2025-05-24 23:40:23 +08:00
|
|
|
postfixadmin = runTest ./postfixadmin.nix;
|
2025-04-09 15:14:31 +02:00
|
|
|
postgres-websockets = runTest ./postgres-websockets.nix;
|
2024-11-02 18:58:52 +01:00
|
|
|
postgresql = handleTest ./postgresql { };
|
2025-03-28 17:09:32 +01:00
|
|
|
postgrest = runTest ./postgrest.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
powerdns = runTest ./powerdns.nix;
|
2021-12-17 10:33:40 +01:00
|
|
|
powerdns-admin = handleTest ./powerdns-admin.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
power-profiles-daemon = runTest ./power-profiles-daemon.nix;
|
|
|
|
pppd = runTest ./pppd.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
predictable-interface-names = handleTest ./predictable-interface-names.nix { };
|
2023-05-13 17:36:03 +02:00
|
|
|
pretalx = runTest ./web-apps/pretalx.nix;
|
2025-03-03 20:40:59 -05:00
|
|
|
prefect = runTest ./prefect.nix;
|
2024-03-14 12:43:39 +01:00
|
|
|
pretix = runTest ./web-apps/pretix.nix;
|
2025-04-16 14:55:07 +02:00
|
|
|
printing-socket = runTest {
|
|
|
|
imports = [ ./printing.nix ];
|
|
|
|
_module.args.socket = true;
|
|
|
|
_module.args.listenTcp = true;
|
2024-08-29 15:12:56 +02:00
|
|
|
};
|
2025-04-16 14:55:07 +02:00
|
|
|
printing-service = runTest {
|
|
|
|
imports = [ ./printing.nix ];
|
|
|
|
_module.args.socket = false;
|
|
|
|
_module.args.listenTcp = true;
|
2024-08-29 15:12:56 +02:00
|
|
|
};
|
2025-04-16 14:55:07 +02:00
|
|
|
printing-socket-notcp = runTest {
|
|
|
|
imports = [ ./printing.nix ];
|
|
|
|
_module.args.socket = true;
|
|
|
|
_module.args.listenTcp = false;
|
2024-08-29 15:12:56 +02:00
|
|
|
};
|
2025-04-16 14:55:07 +02:00
|
|
|
printing-service-notcp = runTest {
|
|
|
|
imports = [ ./printing.nix ];
|
|
|
|
_module.args.socket = false;
|
|
|
|
_module.args.listenTcp = false;
|
2025-04-01 20:10:43 +02:00
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
private-gpt = runTest ./private-gpt.nix;
|
2024-09-29 22:57:42 +05:30
|
|
|
privatebin = runTest ./privatebin.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
privoxy = runTest ./privoxy.nix;
|
2025-04-27 17:16:21 +02:00
|
|
|
prometheus = import ./prometheus { inherit runTest; };
|
2018-11-11 20:30:07 +09:00
|
|
|
prometheus-exporters = handleTest ./prometheus-exporters.nix { };
|
2019-06-15 12:16:28 +03:00
|
|
|
prosody = handleTest ./xmpp/prosody.nix { };
|
2022-02-18 22:19:31 +03:00
|
|
|
prosody-mysql = handleTest ./xmpp/prosody-mysql.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
proxy = runTest ./proxy.nix;
|
2025-05-24 15:27:10 +02:00
|
|
|
prowlarr = runTest ./prowlarr.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
pt2-clone = runTest ./pt2-clone.nix;
|
|
|
|
pykms = runTest ./pykms.nix;
|
|
|
|
public-inbox = runTest ./public-inbox.nix;
|
|
|
|
pufferpanel = runTest ./pufferpanel.nix;
|
2021-11-30 14:51:06 +01:00
|
|
|
pulseaudio = discoverTests (import ./pulseaudio.nix);
|
2020-05-22 15:15:32 +12:00
|
|
|
qboot = handleTestOn [ "x86_64-linux" "i686-linux" ] ./qboot.nix { };
|
2023-01-12 19:50:27 +01:00
|
|
|
qemu-vm-restrictnetwork = handleTest ./qemu-vm-restrictnetwork.nix { };
|
2023-06-21 01:38:27 +02:00
|
|
|
qemu-vm-volatile-root = runTest ./qemu-vm-volatile-root.nix;
|
2023-06-21 00:19:21 +02:00
|
|
|
qemu-vm-external-disk-image = runTest ./qemu-vm-external-disk-image.nix;
|
2024-02-23 00:00:37 +01:00
|
|
|
qemu-vm-store = runTest ./qemu-vm-store.nix;
|
2024-09-16 12:51:21 +02:00
|
|
|
qgis = handleTest ./qgis.nix { package = pkgs.qgis; };
|
|
|
|
qgis-ltr = handleTest ./qgis.nix { package = pkgs.qgis-ltr; };
|
2025-05-24 23:40:23 +08:00
|
|
|
qownnotes = runTest ./qownnotes.nix;
|
2025-03-11 21:24:52 +01:00
|
|
|
qtile = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./qtile/default.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
quake3 = runTest ./quake3.nix;
|
|
|
|
quicktun = runTest ./quicktun.nix;
|
|
|
|
quickwit = runTest ./quickwit.nix;
|
|
|
|
quorum = runTest ./quorum.nix;
|
|
|
|
rabbitmq = runTest ./rabbitmq.nix;
|
|
|
|
radarr = runTest ./radarr.nix;
|
|
|
|
radicale = runTest ./radicale.nix;
|
2024-05-25 02:23:48 +02:00
|
|
|
radicle = runTest ./radicle.nix;
|
2025-03-11 21:24:52 +01:00
|
|
|
ragnarwm = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./ragnarwm.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
rasdaemon = runTest ./rasdaemon.nix;
|
2025-03-11 11:21:56 +00:00
|
|
|
rathole = runTest ./rathole.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
readarr = runTest ./readarr.nix;
|
|
|
|
realm = runTest ./realm.nix;
|
2025-01-02 21:09:06 +01:00
|
|
|
readeck = runTest ./readeck.nix;
|
2025-02-27 21:08:16 +01:00
|
|
|
rebuilderd = runTest ./rebuilderd.nix;
|
2019-08-31 20:17:33 +02:00
|
|
|
redis = handleTest ./redis.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
redlib = runTest ./redlib.nix;
|
2024-10-13 03:32:49 +02:00
|
|
|
redmine = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./redmine.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
renovate = runTest ./renovate.nix;
|
2023-12-16 19:02:17 +01:00
|
|
|
replace-dependencies = handleTest ./replace-dependencies { };
|
2025-02-12 22:23:15 +01:00
|
|
|
reposilite = runTest ./reposilite.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
restartByActivationScript = runTest ./restart-by-activation-script.nix;
|
|
|
|
restic-rest-server = runTest ./restic-rest-server.nix;
|
|
|
|
restic = runTest ./restic.nix;
|
|
|
|
retroarch = runTest ./retroarch.nix;
|
2024-05-11 06:50:27 +02:00
|
|
|
rke2 = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./rke2 { };
|
2023-10-05 14:32:38 +02:00
|
|
|
rkvm = handleTest ./rkvm { };
|
2024-11-18 22:56:12 +09:00
|
|
|
rmfakecloud = runTest ./rmfakecloud.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
robustirc-bridge = runTest ./robustirc-bridge.nix;
|
|
|
|
rosenpass = runTest ./rosenpass.nix;
|
|
|
|
roundcube = runTest ./roundcube.nix;
|
2025-02-07 09:21:45 +01:00
|
|
|
routinator = handleTest ./routinator.nix { };
|
2023-05-15 14:09:28 +02:00
|
|
|
rshim = handleTest ./rshim.nix { };
|
2018-11-11 20:30:07 +09:00
|
|
|
rspamd = handleTest ./rspamd.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
rspamd-trainer = runTest ./rspamd-trainer.nix;
|
2025-02-03 22:25:20 +01:00
|
|
|
rss-bridge = handleTest ./web-apps/rss-bridge { };
|
2018-10-27 18:33:43 +09:00
|
|
|
rss2email = handleTest ./rss2email.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
rstudio-server = runTest ./rstudio-server.nix;
|
|
|
|
rsyncd = runTest ./rsyncd.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
rsyslogd = handleTest ./rsyslogd.nix { };
|
2024-04-24 16:09:06 +08:00
|
|
|
rtkit = runTest ./rtkit.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
rtorrent = runTest ./rtorrent.nix;
|
2025-04-14 01:17:22 +02:00
|
|
|
rush = runTest ./rush.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
rustls-libssl = runTest ./rustls-libssl.nix;
|
|
|
|
rxe = runTest ./rxe.nix;
|
|
|
|
sabnzbd = runTest ./sabnzbd.nix;
|
2025-04-16 14:23:11 +02:00
|
|
|
samba = runTest ./samba.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
samba-wsdd = runTest ./samba-wsdd.nix;
|
|
|
|
sane = runTest ./sane.nix;
|
|
|
|
sanoid = runTest ./sanoid.nix;
|
|
|
|
saunafs = runTest ./saunafs.nix;
|
2023-06-26 19:41:28 +02:00
|
|
|
scaphandre = handleTest ./scaphandre.nix { };
|
2022-05-31 17:27:54 +02:00
|
|
|
schleuder = handleTest ./schleuder.nix { };
|
2024-03-24 21:03:03 +00:00
|
|
|
scion-freestanding-deployment = handleTest ./scion/freestanding-deployment { };
|
2025-03-21 13:49:47 +08:00
|
|
|
scrutiny = runTest ./scrutiny.nix;
|
2025-05-01 12:14:55 +05:30
|
|
|
scx = runTest ./scx/default.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
sddm = handleTest ./sddm.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
sdl3 = runTest ./sdl3.nix;
|
|
|
|
seafile = runTest ./seafile.nix;
|
2024-06-19 07:04:30 +02:00
|
|
|
searx = runTest ./searx.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
seatd = runTest ./seatd.nix;
|
2024-10-26 01:50:55 +08:00
|
|
|
send = runTest ./send.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
service-runner = runTest ./service-runner.nix;
|
2025-02-20 03:00:31 +01:00
|
|
|
servo = runTest ./servo.nix;
|
2024-12-10 11:55:20 +01:00
|
|
|
shadps4 = runTest ./shadps4.nix;
|
2023-04-19 13:13:54 +00:00
|
|
|
sftpgo = runTest ./sftpgo.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
sfxr-qt = runTest ./sfxr-qt.nix;
|
|
|
|
sgt-puzzles = runTest ./sgt-puzzles.nix;
|
|
|
|
shadow = runTest ./shadow.nix;
|
2020-09-09 10:15:59 +12:00
|
|
|
shadowsocks = handleTest ./shadowsocks { };
|
2025-05-24 23:40:23 +08:00
|
|
|
shattered-pixel-dungeon = runTest ./shattered-pixel-dungeon.nix;
|
|
|
|
shiori = runTest ./shiori.nix;
|
2025-04-19 18:17:50 +02:00
|
|
|
signal-desktop = runTest ./signal-desktop.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
silverbullet = runTest ./silverbullet.nix;
|
|
|
|
simple = runTest ./simple.nix;
|
|
|
|
sing-box = runTest ./sing-box.nix;
|
|
|
|
slimserver = runTest ./slimserver.nix;
|
|
|
|
slurm = runTest ./slurm.nix;
|
|
|
|
snmpd = runTest ./snmpd.nix;
|
|
|
|
smokeping = runTest ./smokeping.nix;
|
2025-03-10 20:20:04 +01:00
|
|
|
snapcast = runTest ./snapcast.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
snapper = runTest ./snapper.nix;
|
2023-04-26 17:46:15 +02:00
|
|
|
snipe-it = runTest ./web-apps/snipe-it.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
soapui = runTest ./soapui.nix;
|
|
|
|
soft-serve = runTest ./soft-serve.nix;
|
|
|
|
sogo = runTest ./sogo.nix;
|
|
|
|
soju = runTest ./soju.nix;
|
|
|
|
solanum = runTest ./solanum.nix;
|
|
|
|
sonarr = runTest ./sonarr.nix;
|
|
|
|
sonic-server = runTest ./sonic-server.nix;
|
2023-12-25 03:49:11 +01:00
|
|
|
sourcehut = handleTest ./sourcehut { };
|
2025-05-24 23:40:23 +08:00
|
|
|
spacecookie = runTest ./spacecookie.nix;
|
2022-02-08 08:59:23 -05:00
|
|
|
spark = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./spark { };
|
2024-10-21 18:34:20 +11:00
|
|
|
spiped = runTest ./spiped.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
sqlite3-to-mysql = runTest ./sqlite3-to-mysql.nix;
|
|
|
|
squid = runTest ./squid.nix;
|
2020-01-18 12:00:00 +00:00
|
|
|
sslh = handleTest ./sslh.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
ssh-agent-auth = runTest ./ssh-agent-auth.nix;
|
|
|
|
ssh-audit = runTest ./ssh-audit.nix;
|
2023-10-18 18:25:11 +02:00
|
|
|
sssd = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./sssd.nix { };
|
|
|
|
sssd-ldap = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./sssd-ldap.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
stalwart-mail = runTest ./stalwart-mail.nix;
|
2023-04-16 19:24:06 -04:00
|
|
|
stargazer = runTest ./web-servers/stargazer.nix;
|
2025-04-04 14:23:09 +02:00
|
|
|
starship = runTest ./starship.nix;
|
2024-12-24 15:27:25 -08:00
|
|
|
stash = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./stash.nix { };
|
2025-04-16 14:36:52 +02:00
|
|
|
static-web-server = runTest ./web-servers/static-web-server.nix;
|
2021-11-12 21:37:11 +01:00
|
|
|
step-ca = handleTestOn [ "x86_64-linux" ] ./step-ca.nix { };
|
2022-09-12 15:18:11 +08:00
|
|
|
stratis = handleTest ./stratis { };
|
2025-05-24 23:40:23 +08:00
|
|
|
strongswan-swanctl = runTest ./strongswan-swanctl.nix;
|
2023-11-23 22:03:03 -05:00
|
|
|
stub-ld = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./stub-ld.nix { };
|
2022-02-22 14:08:43 -08:00
|
|
|
stunnel = handleTest ./stunnel.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
sudo = runTest ./sudo.nix;
|
2025-03-03 11:51:55 +01:00
|
|
|
sudo-rs = runTest ./sudo-rs.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
sunshine = runTest ./sunshine.nix;
|
|
|
|
suricata = runTest ./suricata.nix;
|
2024-01-18 22:11:16 +01:00
|
|
|
suwayomi-server = handleTest ./suwayomi-server.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
swap-file-btrfs = runTest ./swap-file-btrfs.nix;
|
|
|
|
swap-partition = runTest ./swap-partition.nix;
|
|
|
|
swap-random-encryption = runTest ./swap-random-encryption.nix;
|
2024-10-27 01:22:53 +05:30
|
|
|
swapspace = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./swapspace.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
sway = runTest ./sway.nix;
|
|
|
|
swayfx = runTest ./swayfx.nix;
|
2024-12-11 09:38:55 +01:00
|
|
|
switchTest = runTest {
|
|
|
|
imports = [ ./switch-test.nix ];
|
|
|
|
defaults.system.switch.enableNg = false;
|
|
|
|
};
|
|
|
|
switchTestNg = runTest {
|
|
|
|
imports = [ ./switch-test.nix ];
|
|
|
|
defaults.system.switch.enableNg = true;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
sx = runTest ./sx.nix;
|
|
|
|
sympa = runTest ./sympa.nix;
|
|
|
|
syncthing = runTest ./syncthing.nix;
|
|
|
|
syncthing-no-settings = runTest ./syncthing-no-settings.nix;
|
|
|
|
syncthing-init = runTest ./syncthing-init.nix;
|
|
|
|
syncthing-many-devices = runTest ./syncthing-many-devices.nix;
|
2025-01-12 19:17:54 -08:00
|
|
|
syncthing-folders = runTest ./syncthing-folders.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
syncthing-relay = runTest ./syncthing-relay.nix;
|
2023-11-25 21:31:09 +01:00
|
|
|
sysinit-reactivation = runTest ./sysinit-reactivation.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd = runTest ./systemd.nix;
|
|
|
|
systemd-analyze = runTest ./systemd-analyze.nix;
|
2020-05-18 11:16:56 +02:00
|
|
|
systemd-binfmt = handleTestOn [ "x86_64-linux" ] ./systemd-binfmt.nix { };
|
2020-06-13 23:57:52 -04:00
|
|
|
systemd-boot = handleTest ./systemd-boot.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-bpf = runTest ./systemd-bpf.nix;
|
2024-04-24 15:04:07 +02:00
|
|
|
systemd-confinement = handleTest ./systemd-confinement { };
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-coredump = runTest ./systemd-coredump.nix;
|
|
|
|
systemd-cryptenroll = runTest ./systemd-cryptenroll.nix;
|
|
|
|
systemd-credentials-tpm2 = runTest ./systemd-credentials-tpm2.nix;
|
|
|
|
systemd-escaping = runTest ./systemd-escaping.nix;
|
|
|
|
systemd-initrd-bridge = runTest ./systemd-initrd-bridge.nix;
|
|
|
|
systemd-initrd-btrfs-raid = runTest ./systemd-initrd-btrfs-raid.nix;
|
2025-05-10 10:26:31 -04:00
|
|
|
systemd-initrd-credentials = runTest ./systemd-initrd-credentials.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-initrd-luks-fido2 = runTest ./systemd-initrd-luks-fido2.nix;
|
|
|
|
systemd-initrd-luks-keyfile = runTest ./systemd-initrd-luks-keyfile.nix;
|
2025-05-28 11:47:24 +08:00
|
|
|
systemd-initrd-luks-empty-passphrase = runTest {
|
|
|
|
imports = [ ./initrd-luks-empty-passphrase.nix ];
|
|
|
|
_module.args.systemdStage1 = true;
|
2023-03-22 09:17:23 -05:00
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-initrd-luks-password = runTest ./systemd-initrd-luks-password.nix;
|
|
|
|
systemd-initrd-luks-tpm2 = runTest ./systemd-initrd-luks-tpm2.nix;
|
|
|
|
systemd-initrd-luks-unl0kr = runTest ./systemd-initrd-luks-unl0kr.nix;
|
|
|
|
systemd-initrd-modprobe = runTest ./systemd-initrd-modprobe.nix;
|
2022-06-29 01:01:59 -04:00
|
|
|
systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-initrd-networkd-ssh = runTest ./systemd-initrd-networkd-ssh.nix;
|
2023-12-20 18:23:08 +09:00
|
|
|
systemd-initrd-networkd-openvpn = handleTestOn [
|
|
|
|
"x86_64-linux"
|
|
|
|
"i686-linux"
|
|
|
|
] ./initrd-network-openvpn { systemdStage1 = true; };
|
2025-05-28 11:47:24 +08:00
|
|
|
systemd-initrd-shutdown = runTest {
|
|
|
|
imports = [ ./systemd-shutdown.nix ];
|
|
|
|
_module.args.systemdStage1 = true;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-initrd-simple = runTest ./systemd-initrd-simple.nix;
|
|
|
|
systemd-initrd-swraid = runTest ./systemd-initrd-swraid.nix;
|
|
|
|
systemd-initrd-vconsole = runTest ./systemd-initrd-vconsole.nix;
|
|
|
|
systemd-initrd-vlan = runTest ./systemd-initrd-vlan.nix;
|
|
|
|
systemd-journal = runTest ./systemd-journal.nix;
|
|
|
|
systemd-journal-gateway = runTest ./systemd-journal-gateway.nix;
|
|
|
|
systemd-journal-upload = runTest ./systemd-journal-upload.nix;
|
2023-10-05 17:52:07 +03:00
|
|
|
systemd-lock-handler = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./systemd-lock-handler.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-machinectl = runTest ./systemd-machinectl.nix;
|
|
|
|
systemd-networkd = runTest ./systemd-networkd.nix;
|
|
|
|
systemd-networkd-bridge = runTest ./systemd-networkd-bridge.nix;
|
|
|
|
systemd-networkd-dhcpserver = runTest ./systemd-networkd-dhcpserver.nix;
|
2021-11-30 09:57:15 +01:00
|
|
|
systemd-networkd-dhcpserver-static-leases =
|
|
|
|
handleTest ./systemd-networkd-dhcpserver-static-leases.nix
|
2020-05-01 15:12:19 +02:00
|
|
|
{ };
|
|
|
|
systemd-networkd-ipv6-prefix-delegation =
|
|
|
|
handleTest ./systemd-networkd-ipv6-prefix-delegation.nix
|
2025-04-01 20:10:43 +02:00
|
|
|
{ };
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-networkd-vrf = runTest ./systemd-networkd-vrf.nix;
|
|
|
|
systemd-no-tainted = runTest ./systemd-no-tainted.nix;
|
|
|
|
systemd-nspawn = runTest ./systemd-nspawn.nix;
|
|
|
|
systemd-nspawn-configfile = runTest ./systemd-nspawn-configfile.nix;
|
|
|
|
systemd-oomd = runTest ./systemd-oomd.nix;
|
|
|
|
systemd-portabled = runTest ./systemd-portabled.nix;
|
2023-01-19 20:04:29 +01:00
|
|
|
systemd-repart = handleTest ./systemd-repart.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-resolved = runTest ./systemd-resolved.nix;
|
2024-09-18 16:01:09 +02:00
|
|
|
systemd-ssh-proxy = runTest ./systemd-ssh-proxy.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-shutdown = runTest ./systemd-shutdown.nix;
|
2023-07-17 17:20:32 +02:00
|
|
|
systemd-sysupdate = runTest ./systemd-sysupdate.nix;
|
2023-11-19 23:16:14 +01:00
|
|
|
systemd-sysusers-mutable = runTest ./systemd-sysusers-mutable.nix;
|
|
|
|
systemd-sysusers-immutable = runTest ./systemd-sysusers-immutable.nix;
|
2024-12-15 12:22:02 +08:00
|
|
|
systemd-sysusers-password-option-override-ordering = runTest ./systemd-sysusers-password-option-override-ordering.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
systemd-timesyncd = runTest ./systemd-timesyncd.nix;
|
|
|
|
systemd-timesyncd-nscd-dnssec = runTest ./systemd-timesyncd-nscd-dnssec.nix;
|
|
|
|
systemd-user-linger = runTest ./systemd-user-linger.nix;
|
|
|
|
systemd-user-tmpfiles-rules = runTest ./systemd-user-tmpfiles-rules.nix;
|
|
|
|
systemd-misc = runTest ./systemd-misc.nix;
|
|
|
|
systemd-userdbd = runTest ./systemd-userdbd.nix;
|
|
|
|
systemd-homed = runTest ./systemd-homed.nix;
|
2024-01-09 19:38:02 +01:00
|
|
|
systemtap = handleTest ./systemtap.nix { };
|
2025-03-12 13:08:30 +01:00
|
|
|
startx = import ./startx.nix { inherit pkgs runTest; };
|
2024-07-23 18:20:41 +01:00
|
|
|
taler = handleTest ./taler { };
|
2025-05-24 23:40:23 +08:00
|
|
|
tandoor-recipes = runTest ./tandoor-recipes.nix;
|
|
|
|
tandoor-recipes-script-name = runTest ./tandoor-recipes-script-name.nix;
|
|
|
|
tang = runTest ./tang.nix;
|
|
|
|
taskserver = runTest ./taskserver.nix;
|
|
|
|
taskchampion-sync-server = runTest ./taskchampion-sync-server.nix;
|
|
|
|
tayga = runTest ./tayga.nix;
|
|
|
|
technitium-dns-server = runTest ./technitium-dns-server.nix;
|
|
|
|
teeworlds = runTest ./teeworlds.nix;
|
2025-03-12 12:11:18 +10:00
|
|
|
telegraf = runTest ./telegraf.nix;
|
2022-01-10 13:46:47 +01:00
|
|
|
teleport = handleTest ./teleport.nix { };
|
2024-07-04 20:36:22 +02:00
|
|
|
teleports = runTest ./teleports.nix;
|
2022-01-10 21:29:04 -05:00
|
|
|
thelounge = handleTest ./thelounge.nix { };
|
2020-11-14 07:41:14 +13:00
|
|
|
terminal-emulators = handleTest ./terminal-emulators.nix { };
|
2024-06-02 00:01:02 +01:00
|
|
|
thanos = handleTest ./thanos.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
tiddlywiki = runTest ./tiddlywiki.nix;
|
2020-04-13 05:56:20 +02:00
|
|
|
tigervnc = handleTest ./tigervnc.nix { };
|
2024-07-12 12:59:00 +02:00
|
|
|
tika = runTest ./tika.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
timezone = runTest ./timezone.nix;
|
2024-10-24 11:46:02 +02:00
|
|
|
timidity = handleTestOn [ "aarch64-linux" "x86_64-linux" ] ./timidity { };
|
2020-12-06 16:05:21 +01:00
|
|
|
tinc = handleTest ./tinc { };
|
2025-05-24 23:40:23 +08:00
|
|
|
tinydns = runTest ./tinydns.nix;
|
|
|
|
tinyproxy = runTest ./tinyproxy.nix;
|
|
|
|
tinywl = runTest ./tinywl.nix;
|
|
|
|
tmate-ssh-server = runTest ./tmate-ssh-server.nix;
|
|
|
|
tomcat = runTest ./tomcat.nix;
|
|
|
|
tor = runTest ./tor.nix;
|
2024-12-11 19:09:20 -08:00
|
|
|
tpm-ek = handleTest ./tpm-ek { };
|
2025-03-29 22:17:53 +01:00
|
|
|
traefik = runTestOn [ "aarch64-linux" "x86_64-linux" ] ./traefik.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
trafficserver = runTest ./trafficserver.nix;
|
|
|
|
transfer-sh = runTest ./transfer-sh.nix;
|
2024-06-10 10:54:49 +03:00
|
|
|
transmission_3 = handleTest ./transmission.nix { transmission = pkgs.transmission_3; };
|
2023-09-23 21:27:17 +10:00
|
|
|
transmission_4 = handleTest ./transmission.nix { transmission = pkgs.transmission_4; };
|
2022-10-02 11:43:54 +01:00
|
|
|
# tracee requires bpf
|
|
|
|
tracee = handleTestOn [ "x86_64-linux" ] ./tracee.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
trezord = runTest ./trezord.nix;
|
|
|
|
trickster = runTest ./trickster.nix;
|
2020-11-29 20:00:38 -03:00
|
|
|
trilium-server = handleTestOn [ "x86_64-linux" ] ./trilium-server.nix { };
|
2025-05-24 23:40:23 +08:00
|
|
|
tsm-client-gui = runTest ./tsm-client-gui.nix;
|
|
|
|
ttyd = runTest ./web-servers/ttyd.nix;
|
|
|
|
tt-rss = runTest ./web-apps/tt-rss.nix;
|
|
|
|
txredisapi = runTest ./txredisapi.nix;
|
|
|
|
tuptime = runTest ./tuptime.nix;
|
|
|
|
turbovnc-headless-server = runTest ./turbovnc-headless-server.nix;
|
|
|
|
turn-rs = runTest ./turn-rs.nix;
|
2022-04-03 19:24:06 +00:00
|
|
|
tusd = runTest ./tusd/default.nix;
|
2025-04-04 13:55:33 +02:00
|
|
|
tuxguitar = runTest ./tuxguitar.nix;
|
2023-07-07 19:50:29 +03:00
|
|
|
twingate = runTest ./twingate.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
typesense = runTest ./typesense.nix;
|
2025-04-27 09:44:00 +02:00
|
|
|
tzupdate = runTest ./tzupdate.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
ucarp = runTest ./ucarp.nix;
|
|
|
|
udisks2 = runTest ./udisks2.nix;
|
|
|
|
ulogd = runTest ./ulogd/ulogd.nix;
|
|
|
|
umurmur = runTest ./umurmur.nix;
|
|
|
|
unbound = runTest ./unbound.nix;
|
2025-04-23 00:47:38 +03:00
|
|
|
unifi = runTest ./unifi.nix;
|
2025-03-29 17:29:12 +01:00
|
|
|
unit-php = runTest ./web-servers/unit-php.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
unit-perl = runTest ./web-servers/unit-perl.nix;
|
2023-06-22 00:08:31 +07:00
|
|
|
upnp.iptables = handleTest ./upnp.nix { useNftables = false; };
|
|
|
|
upnp.nftables = handleTest ./upnp.nix { useNftables = true; };
|
2025-05-24 23:40:23 +08:00
|
|
|
uptermd = runTest ./uptermd.nix;
|
|
|
|
uptime-kuma = runTest ./uptime-kuma.nix;
|
|
|
|
urn-timer = runTest ./urn-timer.nix;
|
|
|
|
usbguard = runTest ./usbguard.nix;
|
2024-08-07 14:56:05 +02:00
|
|
|
userborn = runTest ./userborn.nix;
|
|
|
|
userborn-mutable-users = runTest ./userborn-mutable-users.nix;
|
|
|
|
userborn-immutable-users = runTest ./userborn-immutable-users.nix;
|
|
|
|
userborn-mutable-etc = runTest ./userborn-mutable-etc.nix;
|
|
|
|
userborn-immutable-etc = runTest ./userborn-immutable-etc.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
user-activation-scripts = runTest ./user-activation-scripts.nix;
|
2024-11-26 16:31:02 +03:00
|
|
|
user-enable-option = runTest ./user-enable-option.nix;
|
2023-08-02 13:51:06 +02:00
|
|
|
user-expiry = runTest ./user-expiry.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
user-home-mode = runTest ./user-home-mode.nix;
|
|
|
|
ustreamer = runTest ./ustreamer.nix;
|
|
|
|
uwsgi = runTest ./uwsgi.nix;
|
|
|
|
v2ray = runTest ./v2ray.nix;
|
2025-03-30 18:22:15 +02:00
|
|
|
varnish60 = runTest {
|
|
|
|
imports = [ ./varnish.nix ];
|
|
|
|
_module.args.package = pkgs.varnish60;
|
|
|
|
};
|
2025-03-29 16:10:15 +01:00
|
|
|
varnish77 = runTest {
|
|
|
|
imports = [ ./varnish.nix ];
|
|
|
|
_module.args.package = pkgs.varnish77;
|
|
|
|
};
|
2025-05-24 23:40:23 +08:00
|
|
|
vault = runTest ./vault.nix;
|
|
|
|
vault-agent = runTest ./vault-agent.nix;
|
|
|
|
vault-dev = runTest ./vault-dev.nix;
|
|
|
|
vault-postgresql = runTest ./vault-postgresql.nix;
|
2023-07-27 21:13:55 +02:00
|
|
|
vaultwarden = discoverTests (import ./vaultwarden.nix);
|
2025-05-24 23:40:23 +08:00
|
|
|
vdirsyncer = runTest ./vdirsyncer.nix;
|
2024-05-21 17:13:35 +01:00
|
|
|
vector = handleTest ./vector { };
|
2025-02-22 00:08:42 +01:00
|
|
|
velocity = runTest ./velocity.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
vengi-tools = runTest ./vengi-tools.nix;
|
2024-11-22 09:53:13 +08:00
|
|
|
victoriametrics = handleTest ./victoriametrics { };
|
2025-05-24 23:40:23 +08:00
|
|
|
vikunja = runTest ./vikunja.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
virtualbox = handleTestOn [ "x86_64-linux" ] ./virtualbox.nix { };
|
2025-03-18 20:32:43 +00:00
|
|
|
vm-variant = handleTest ./vm-variant.nix { };
|
2022-03-13 18:16:34 +11:00
|
|
|
vscode-remote-ssh = handleTestOn [ "x86_64-linux" ] ./vscode-remote-ssh.nix { };
|
2021-11-19 21:21:20 +01:00
|
|
|
vscodium = discoverTests (import ./vscodium.nix);
|
2025-05-24 23:40:23 +08:00
|
|
|
vsftpd = runTest ./vsftpd.nix;
|
|
|
|
waagent = runTest ./waagent.nix;
|
2025-03-17 18:09:54 +00:00
|
|
|
wakapi = runTest ./wakapi.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
warzone2100 = runTest ./warzone2100.nix;
|
|
|
|
wasabibackend = runTest ./wasabibackend.nix;
|
2025-04-05 18:17:28 +02:00
|
|
|
wastebin = runTest ./wastebin.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
watchdogd = runTest ./watchdogd.nix;
|
2020-03-22 12:49:51 +01:00
|
|
|
webhook = runTest ./webhook.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
weblate = runTest ./web-apps/weblate.nix;
|
|
|
|
whisparr = runTest ./whisparr.nix;
|
2025-04-09 16:51:16 +02:00
|
|
|
whoami = runTest ./whoami.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
whoogle-search = runTest ./whoogle-search.nix;
|
2025-03-29 23:10:14 +01:00
|
|
|
wiki-js = runTest ./wiki-js.nix;
|
2022-01-23 12:11:05 +01:00
|
|
|
wine = handleTest ./wine.nix { };
|
2019-03-17 13:20:38 +01:00
|
|
|
wireguard = handleTest ./wireguard { };
|
2025-05-24 23:40:23 +08:00
|
|
|
wg-access-server = runTest ./wg-access-server.nix;
|
|
|
|
without-nix = runTest ./without-nix.nix;
|
|
|
|
wmderland = runTest ./wmderland.nix;
|
|
|
|
workout-tracker = runTest ./workout-tracker.nix;
|
2024-08-22 19:27:20 +02:00
|
|
|
wpa_supplicant = import ./wpa_supplicant.nix { inherit pkgs runTest; };
|
2025-03-29 16:14:24 +01:00
|
|
|
wordpress = runTest ./wordpress.nix;
|
2025-05-24 23:40:23 +08:00
|
|
|
wrappers = runTest ./wrappers.nix;
|
2025-04-17 21:11:08 +02:00
|
|
|
writefreely = import ./web-apps/writefreely.nix { inherit pkgs runTest; };
|
2024-06-15 16:32:52 +02:00
|
|
|
wstunnel = runTest ./wstunnel.nix;
|
2025-03-14 23:38:25 +01:00
|
|
|
xandikos = runTest ./xandikos.nix;
|
2025-03-14 23:35:56 +01:00
|
|
|
xautolock = runTest ./xautolock.nix;
|
2025-03-14 23:35:14 +01:00
|
|
|
xfce = runTest ./xfce.nix;
|
2025-03-14 23:34:36 +01:00
|
|
|
xfce-wayland = runTest ./xfce-wayland.nix;
|
2025-03-14 23:21:51 +01:00
|
|
|
xmonad = runTest ./xmonad.nix;
|
2025-03-14 23:20:54 +01:00
|
|
|
xmonad-xdg-autostart = runTest ./xmonad-xdg-autostart.nix;
|
2025-03-14 23:18:18 +01:00
|
|
|
xpadneo = runTest ./xpadneo.nix;
|
2025-03-14 23:15:25 +01:00
|
|
|
xrdp = runTest ./xrdp.nix;
|
2025-03-14 23:09:47 +01:00
|
|
|
xrdp-with-audio-pulseaudio = runTest ./xrdp-with-audio-pulseaudio.nix;
|
2025-03-31 21:57:36 +02:00
|
|
|
xscreensaver = runTest ./xscreensaver.nix;
|
2025-03-14 23:07:18 +01:00
|
|
|
xss-lock = runTest ./xss-lock.nix;
|
2025-03-14 23:03:42 +01:00
|
|
|
xterm = runTest ./xterm.nix;
|
2025-03-14 23:02:38 +01:00
|
|
|
xxh = runTest ./xxh.nix;
|
2025-03-14 23:01:01 +01:00
|
|
|
yabar = runTest ./yabar.nix;
|
2025-04-22 22:08:33 +02:00
|
|
|
yarr = runTest ./yarr.nix;
|
2024-05-08 17:58:21 +02:00
|
|
|
ydotool = handleTest ./ydotool.nix { };
|
2025-03-14 22:59:07 +01:00
|
|
|
yggdrasil = runTest ./yggdrasil.nix;
|
2025-03-14 22:57:44 +01:00
|
|
|
your_spotify = runTest ./your_spotify.nix;
|
2025-03-14 22:52:10 +01:00
|
|
|
zammad = runTest ./zammad.nix;
|
2025-03-14 22:51:56 +01:00
|
|
|
zenohd = runTest ./zenohd.nix;
|
2025-03-14 22:49:23 +01:00
|
|
|
zeronet-conservancy = runTest ./zeronet-conservancy.nix;
|
2020-02-03 18:33:26 +01:00
|
|
|
zfs = handleTest ./zfs.nix { };
|
2025-01-05 04:15:24 +01:00
|
|
|
zigbee2mqtt_1 = runTest {
|
|
|
|
imports = [ ./zigbee2mqtt.nix ];
|
|
|
|
_module.args.package = pkgs.zigbee2mqtt_1;
|
|
|
|
};
|
|
|
|
zigbee2mqtt_2 = runTest {
|
|
|
|
imports = [ ./zigbee2mqtt.nix ];
|
|
|
|
_module.args.package = pkgs.zigbee2mqtt_2;
|
|
|
|
};
|
2025-03-14 22:46:10 +01:00
|
|
|
zipline = runTest ./zipline.nix;
|
2025-03-14 22:45:38 +01:00
|
|
|
zoneminder = runTest ./zoneminder.nix;
|
2025-03-14 22:43:51 +01:00
|
|
|
zookeeper = runTest ./zookeeper.nix;
|
2025-05-01 19:28:32 +02:00
|
|
|
zoom-us = runTest ./zoom-us.nix;
|
2025-03-14 22:42:49 +01:00
|
|
|
zram-generator = runTest ./zram-generator.nix;
|
2025-03-14 22:41:58 +01:00
|
|
|
zrepl = runTest ./zrepl.nix;
|
2025-03-14 22:41:04 +01:00
|
|
|
zsh-history = runTest ./zsh-history.nix;
|
2025-03-14 22:39:30 +01:00
|
|
|
zwave-js = runTest ./zwave-js.nix;
|
2025-03-14 22:37:17 +01:00
|
|
|
zwave-js-ui = runTest ./zwave-js-ui.nix;
|
2022-06-06 19:24:30 +02:00
|
|
|
}
|