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
|
|
|
|
# the `anything` returned by callTest at its test leafs.
|
|
|
|
# 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
|
2022-06-25 12:47:50 +02:00
|
|
|
then
|
|
|
|
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 = {
|
|
|
|
extra-python-packages = handleTest ./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;
|
2022-06-06 23:49:59 +02:00
|
|
|
acme = runTest ./acme.nix;
|
2023-05-31 15:08:39 +02:00
|
|
|
acme-dns = handleTest ./acme-dns.nix {};
|
2024-10-11 03:06:31 +02:00
|
|
|
actual = handleTest ./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;
|
2020-04-19 20:01:37 +02:00
|
|
|
agda = handleTest ./agda.nix {};
|
2025-02-16 09:49:59 -08:00
|
|
|
age-plugin-tpm-decrypt = runTest ./age-plugin-tpm-decrypt.nix;
|
2024-10-14 23:25:16 +02:00
|
|
|
agorakit = runTest ./web-apps/agorakit.nix;
|
2021-05-03 09:38:02 -06:00
|
|
|
airsonic = handleTest ./airsonic.nix {};
|
2022-09-24 15:52:36 +02:00
|
|
|
akkoma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix {};
|
|
|
|
akkoma-confined = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./akkoma.nix { confined = true; };
|
2023-04-11 17:55:16 +02:00
|
|
|
alice-lg = handleTest ./alice-lg.nix {};
|
2024-06-08 18:31:12 +03:00
|
|
|
alloy = handleTest ./alloy.nix {};
|
2021-10-05 14:33:18 +03:00
|
|
|
allTerminfo = handleTest ./all-terminfo.nix {};
|
2022-11-16 17:56:44 +01:00
|
|
|
alps = handleTest ./alps.nix {};
|
2024-08-27 01:53:59 -04:00
|
|
|
amazon-cloudwatch-agent = handleTest ./amazon-cloudwatch-agent.nix {};
|
2021-04-18 10:19:06 +01:00
|
|
|
amazon-init-shell = handleTest ./amazon-init-shell.nix {};
|
2023-10-25 11:29:11 +02:00
|
|
|
amazon-ssm-agent = handleTest ./amazon-ssm-agent.nix {};
|
2023-08-10 20:42:41 +02:00
|
|
|
amd-sev = runTest ./amd-sev.nix;
|
2023-11-20 23:22:02 +03:00
|
|
|
angie-api = handleTest ./angie-api.nix {};
|
2023-09-25 22:01:02 +09:00
|
|
|
anki-sync-server = handleTest ./anki-sync-server.nix {};
|
2023-06-27 12:30:06 +02:00
|
|
|
anuko-time-tracker = handleTest ./anuko-time-tracker.nix {};
|
2022-12-29 13:43:50 +01:00
|
|
|
apcupsd = handleTest ./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;
|
2024-12-03 22:18:24 +01:00
|
|
|
apparmor = handleTest ./apparmor {};
|
2023-10-31 01:06:08 +01:00
|
|
|
archi = handleTest ./archi.nix {};
|
2024-04-16 19:14:48 +02:00
|
|
|
aria2 = handleTest ./aria2.nix {};
|
2023-11-25 13:06:11 -08:00
|
|
|
armagetronad = handleTest ./armagetronad.nix {};
|
2024-11-21 12:52:14 +08:00
|
|
|
artalk = runTest ./artalk.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
atd = handleTest ./atd.nix {};
|
2021-05-14 02:11:05 +02:00
|
|
|
atop = handleTest ./atop.nix {};
|
2024-10-10 10:57:51 -04:00
|
|
|
atticd = runTest ./atticd.nix;
|
2024-12-30 10:20:05 +02:00
|
|
|
atuin = runTest ./atuin.nix;
|
2023-09-29 11:46:13 +02:00
|
|
|
audiobookshelf = handleTest ./audiobookshelf.nix {};
|
2022-07-31 23:40:48 +02:00
|
|
|
auth-mysql = handleTest ./auth-mysql.nix {};
|
2023-03-02 21:18:50 +00:00
|
|
|
authelia = handleTest ./authelia.nix {};
|
2024-10-21 19:00:20 +00:00
|
|
|
auto-cpufreq = handleTest ./auto-cpufreq.nix {};
|
2024-02-09 17:55:06 -05:00
|
|
|
autobrr = handleTest ./autobrr.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
avahi = handleTest ./avahi.nix {};
|
2020-10-11 20:45:25 +02:00
|
|
|
avahi-with-resolved = handleTest ./avahi.nix { networkd = true; };
|
2024-08-15 22:06:15 +02:00
|
|
|
ayatana-indicators = runTest ./ayatana-indicators.nix;
|
2019-10-12 01:30:55 +02:00
|
|
|
babeld = handleTest ./babeld.nix {};
|
2020-05-10 12:54:09 +02:00
|
|
|
bazarr = handleTest ./bazarr.nix {};
|
2021-11-06 21:24:16 +00:00
|
|
|
bcachefs = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bcachefs.nix {};
|
2019-02-22 08:10:02 -05:00
|
|
|
beanstalkd = handleTest ./beanstalkd.nix {};
|
2019-11-24 01:10:17 +01:00
|
|
|
bees = handleTest ./bees.nix {};
|
2024-05-17 21:19:41 +02:00
|
|
|
benchexec = handleTest ./benchexec.nix {};
|
2022-10-03 22:06:28 -06:00
|
|
|
binary-cache = handleTest ./binary-cache.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
bind = handleTest ./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 {};
|
2020-07-21 13:43:32 +02:00
|
|
|
bitcoind = handleTest ./bitcoind.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
bittorrent = handleTest ./bittorrent.nix {};
|
2020-06-23 13:09:03 +02:00
|
|
|
blockbook-frontend = handleTest ./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 {};
|
2018-11-11 20:30:07 +09:00
|
|
|
boot-stage1 = handleTest ./boot-stage1.nix {};
|
2025-01-19 23:02:25 -08:00
|
|
|
boot-stage2 = handleTest ./boot-stage2.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
borgbackup = handleTest ./borgbackup.nix {};
|
2024-03-02 12:24:17 +01:00
|
|
|
borgmatic = handleTest ./borgmatic.nix {};
|
2021-05-04 14:30:25 +02:00
|
|
|
botamusique = handleTest ./botamusique.nix {};
|
2021-12-04 10:20:26 +09:00
|
|
|
bpf = handleTestOn ["x86_64-linux" "aarch64-linux"] ./bpf.nix {};
|
2023-06-29 10:43:06 +08:00
|
|
|
bpftune = handleTest ./bpftune.nix {};
|
2022-01-26 14:03:05 +01:00
|
|
|
breitbandmessung = handleTest ./breitbandmessung.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
brscan5 = handleTest ./brscan5.nix {};
|
2021-05-30 12:00:00 +00:00
|
|
|
btrbk = handleTest ./btrbk.nix {};
|
2022-10-02 12:42:57 +02:00
|
|
|
btrbk-doas = handleTest ./btrbk-doas.nix {};
|
2022-03-19 23:51:32 +08:00
|
|
|
btrbk-no-timer = handleTest ./btrbk-no-timer.nix {};
|
2022-10-18 23:50:44 +08:00
|
|
|
btrbk-section-order = handleTest ./btrbk-section-order.nix {};
|
2023-02-16 23:48:02 -03:00
|
|
|
budgie = handleTest ./budgie.nix {};
|
2023-12-26 21:13:50 +00:00
|
|
|
buildbot = handleTest ./buildbot.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
buildkite-agents = handleTest ./buildkite-agents.nix {};
|
2023-10-01 22:09:53 +02:00
|
|
|
c2fmzq = handleTest ./c2fmzq.nix {};
|
2019-10-09 13:32:03 +02:00
|
|
|
caddy = handleTest ./caddy.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
cadvisor = handleTestOn ["x86_64-linux"] ./cadvisor.nix {};
|
2021-05-27 20:37:24 +02:00
|
|
|
cage = handleTest ./cage.nix {};
|
|
|
|
cagebreak = handleTest ./cagebreak.nix {};
|
2021-02-23 14:23:20 +03:00
|
|
|
calibre-web = handleTest ./calibre-web.nix {};
|
2023-06-28 14:06:47 +02:00
|
|
|
calibre-server = handleTest ./calibre-server.nix {};
|
2024-08-15 16:35:10 +02:00
|
|
|
canaille = handleTest ./canaille.nix {};
|
2023-04-07 16:36:13 +03:00
|
|
|
castopod = handleTest ./castopod.nix {};
|
2020-12-09 13:01:56 +01:00
|
|
|
cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; };
|
|
|
|
cassandra_3_11 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_11; };
|
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 {};
|
2022-04-05 02:02:11 +02:00
|
|
|
cgit = handleTest ./cgit.nix {};
|
2020-08-25 09:44:27 +02:00
|
|
|
charliecloud = handleTest ./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 {};
|
2022-09-05 15:40:17 +08:00
|
|
|
cinnamon = handleTest ./cinnamon.nix {};
|
2023-11-20 00:10:36 +08:00
|
|
|
cinnamon-wayland = handleTest ./cinnamon-wayland.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
cjdns = handleTest ./cjdns.nix {};
|
2022-10-23 01:13:35 +02:00
|
|
|
clatd = handleTest ./clatd.nix {};
|
2018-12-19 15:06:53 +01:00
|
|
|
clickhouse = handleTest ./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 {};
|
2023-01-01 23:19:37 +00:00
|
|
|
cloudlog = handleTest ./cloudlog.nix {};
|
2022-09-24 16:15:39 +10:00
|
|
|
cntr = handleTestOn ["aarch64-linux" "x86_64-linux"] ./cntr.nix {};
|
2023-01-29 14:40:46 -03:00
|
|
|
cockpit = handleTest ./cockpit.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
cockroachdb = handleTestOn ["x86_64-linux"] ./cockroachdb.nix {};
|
2023-12-19 15:40:57 +01:00
|
|
|
code-server = handleTest ./code-server.nix {};
|
2022-10-24 20:08:00 +00:00
|
|
|
coder = handleTest ./coder.nix {};
|
2021-12-22 12:00:00 +00:00
|
|
|
collectd = handleTest ./collectd.nix {};
|
2024-04-15 13:57:37 +02:00
|
|
|
commafeed = handleTest ./commafeed.nix {};
|
2024-11-23 15:35:02 +01:00
|
|
|
conduwuit = runTest ./matrix/conduwuit.nix;
|
2023-01-26 00:22:21 +01:00
|
|
|
connman = handleTest ./connman.nix {};
|
2019-11-24 15:08:53 +01:00
|
|
|
consul = handleTest ./consul.nix {};
|
2023-04-25 16:54:08 +02:00
|
|
|
consul-template = handleTest ./consul-template.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
containers-bridge = handleTest ./containers-bridge.nix {};
|
2020-04-19 14:41:18 +01:00
|
|
|
containers-custom-pkgs.nix = handleTest ./containers-custom-pkgs.nix {};
|
2019-08-18 21:37:38 +02:00
|
|
|
containers-ephemeral = handleTest ./containers-ephemeral.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
containers-extra_veth = handleTest ./containers-extra_veth.nix {};
|
|
|
|
containers-hosts = handleTest ./containers-hosts.nix {};
|
|
|
|
containers-imperative = handleTest ./containers-imperative.nix {};
|
2019-11-26 00:44:12 +01:00
|
|
|
containers-ip = handleTest ./containers-ip.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
containers-macvlans = handleTest ./containers-macvlans.nix {};
|
2021-02-26 17:14:08 +01:00
|
|
|
containers-names = handleTest ./containers-names.nix {};
|
2021-02-24 14:02:57 +01:00
|
|
|
containers-nested = handleTest ./containers-nested.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
containers-physical_interfaces = handleTest ./containers-physical_interfaces.nix {};
|
2019-12-10 20:34:37 +01:00
|
|
|
containers-portforward = handleTest ./containers-portforward.nix {};
|
2020-08-23 11:00:09 +02:00
|
|
|
containers-reloadable = handleTest ./containers-reloadable.nix {};
|
2024-03-20 14:22:44 -04:00
|
|
|
containers-require-bind-mounts = handleTest ./containers-require-bind-mounts.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
containers-restart_networking = handleTest ./containers-restart_networking.nix {};
|
|
|
|
containers-tmpfs = handleTest ./containers-tmpfs.nix {};
|
2022-10-29 22:22:57 +02:00
|
|
|
containers-unified-hierarchy = handleTest ./containers-unified-hierarchy.nix {};
|
2020-06-05 14:54:29 +02:00
|
|
|
convos = handleTest ./convos.nix {};
|
2020-01-07 11:52:32 -05:00
|
|
|
corerad = handleTest ./corerad.nix {};
|
2021-07-03 08:32:03 +01:00
|
|
|
coturn = handleTest ./coturn.nix {};
|
2019-07-24 20:48:43 +02:00
|
|
|
couchdb = handleTest ./couchdb.nix {};
|
2024-04-02 12:16:53 +02:00
|
|
|
crabfit = handleTest ./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;
|
2022-07-20 20:14:06 +02:00
|
|
|
cups-pdf = handleTest ./cups-pdf.nix {};
|
2023-07-21 14:37:48 -04:00
|
|
|
curl-impersonate = handleTest ./curl-impersonate.nix {};
|
2021-01-10 18:28:29 +01:00
|
|
|
custom-ca = handleTest ./custom-ca.nix {};
|
2020-07-22 10:34:57 +02:00
|
|
|
croc = handleTest ./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;
|
2023-05-01 17:39:19 -06:00
|
|
|
darling = handleTest ./darling.nix {};
|
2024-07-01 21:42:50 +02:00
|
|
|
darling-dmg = runTest ./darling-dmg.nix;
|
2023-09-03 02:30:30 +08:00
|
|
|
dae = handleTest ./dae.nix {};
|
2024-03-25 15:32:01 +01:00
|
|
|
davis = handleTest ./davis.nix {};
|
2023-11-14 21:58:11 +01:00
|
|
|
db-rest = handleTest ./db-rest.nix {};
|
2023-06-14 16:27:19 +08:00
|
|
|
dconf = handleTest ./dconf.nix {};
|
2024-07-16 17:45:02 +00:00
|
|
|
ddns-updater = handleTest ./ddns-updater.nix {};
|
2023-09-17 20:04:28 +02:00
|
|
|
deconz = handleTest ./deconz.nix {};
|
2023-04-25 11:34:09 +08:00
|
|
|
deepin = handleTest ./deepin.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
deluge = handleTest ./deluge.nix {};
|
2022-05-13 16:46:01 +09:00
|
|
|
dendrite = handleTest ./matrix/dendrite.nix {};
|
2024-07-20 21:25:05 +02:00
|
|
|
dependency-track = handleTest ./dependency-track.nix {};
|
2024-04-19 13:26:38 +02:00
|
|
|
devpi-server = handleTest ./devpi-server.nix {};
|
2021-09-20 01:43:54 +02:00
|
|
|
dex-oidc = handleTest ./dex-oidc.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
dhparams = handleTest ./dhparams.nix {};
|
2021-09-12 08:06:34 +02:00
|
|
|
disable-installer-tools = handleTest ./disable-installer-tools.nix {};
|
2021-03-14 15:44:34 +01:00
|
|
|
discourse = handleTest ./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; };
|
2020-04-13 20:13:36 -07:00
|
|
|
doas = handleTest ./doas.nix {};
|
2022-09-24 17:40:42 +10:00
|
|
|
docker = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker.nix {};
|
|
|
|
docker-rootless = handleTestOn ["aarch64-linux" "x86_64-linux"] ./docker-rootless.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
docker-registry = handleTest ./docker-registry.nix {};
|
|
|
|
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;
|
2020-12-13 00:33:46 +01:00
|
|
|
docker-tools-cross = handleTestOn ["x86_64-linux" "aarch64-linux"] ./docker-tools-cross.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
docker-tools-overlay = handleTestOn ["x86_64-linux"] ./docker-tools-overlay.nix {};
|
2019-03-26 19:04:28 +01:00
|
|
|
documize = handleTest ./documize.nix {};
|
2022-07-14 11:57:37 +02:00
|
|
|
documentation = pkgs.callPackage ../modules/misc/documentation/test.nix { inherit nixosLib; };
|
2022-01-23 12:11:05 +01:00
|
|
|
doh-proxy-rust = handleTest ./doh-proxy-rust.nix {};
|
2019-12-25 23:04:55 +01:00
|
|
|
dokuwiki = handleTest ./dokuwiki.nix {};
|
2022-11-01 21:02:39 +08:00
|
|
|
dolibarr = handleTest ./dolibarr.nix {};
|
2021-11-13 23:00:20 +01:00
|
|
|
domination = handleTest ./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);
|
2021-11-30 21:42:29 +01:00
|
|
|
drbd = handleTest ./drbd.nix {};
|
2024-03-14 00:12:18 +05:30
|
|
|
druid = handleTestOn [ "x86_64-linux" ] ./druid {};
|
2024-05-15 20:12:46 +02:00
|
|
|
drbd-driver = handleTest ./drbd-driver.nix {};
|
2023-11-27 09:45:10 -08:00
|
|
|
dublin-traceroute = handleTest ./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-01-11 16:57:57 +01:00
|
|
|
echoip = handleTest ./echoip.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
ecryptfs = handleTest ./ecryptfs.nix {};
|
2022-05-17 20:16:22 +02:00
|
|
|
fscrypt = handleTest ./fscrypt.nix {};
|
2023-10-18 04:13:16 +02:00
|
|
|
fastnetmon-advanced = runTest ./fastnetmon-advanced.nix;
|
2024-07-03 11:24:22 +02:00
|
|
|
eintopf = handleTest ./eintopf.nix {};
|
2019-06-15 12:16:28 +03:00
|
|
|
ejabberd = handleTest ./xmpp/ejabberd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
elk = handleTestOn ["x86_64-linux"] ./elk.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
emacs-daemon = handleTest ./emacs-daemon.nix {};
|
2022-10-22 15:53:35 +03:00
|
|
|
endlessh = handleTest ./endlessh.nix {};
|
2022-09-23 23:39:38 +03:00
|
|
|
endlessh-go = handleTest ./endlessh-go.nix {};
|
2020-05-24 14:20:58 +02:00
|
|
|
engelsystem = handleTest ./engelsystem.nix {};
|
2020-05-02 11:28:50 -03:00
|
|
|
enlightenment = handleTest ./enlightenment.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
env = handleTest ./env.nix {};
|
2022-12-28 15:09:54 +01:00
|
|
|
envfs = handleTest ./envfs.nix {};
|
2021-08-27 19:28:27 -07:00
|
|
|
envoy = handleTest ./envoy.nix {};
|
2020-05-24 20:39:23 +02:00
|
|
|
ergo = handleTest ./ergo.nix {};
|
2022-01-12 21:47:27 +01:00
|
|
|
ergochat = handleTest ./ergochat.nix {};
|
2023-07-29 11:20:37 +01:00
|
|
|
eris-server = handleTest ./eris-server.nix {};
|
2023-03-22 22:48:59 +01:00
|
|
|
esphome = handleTest ./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 {};
|
2021-03-28 23:49:45 +02:00
|
|
|
etebase-server = handleTest ./etebase-server.nix {};
|
2020-11-30 22:10:07 +01:00
|
|
|
etesync-dav = handleTest ./etesync-dav.nix {};
|
2025-02-22 02:27:12 +01:00
|
|
|
evcc = runTest ./evcc.nix;
|
2022-11-19 13:13:56 +01:00
|
|
|
fail2ban = handleTest ./fail2ban.nix { };
|
2023-06-18 02:59:06 +02:00
|
|
|
fakeroute = handleTest ./fakeroute.nix {};
|
2019-10-29 15:06:32 +01:00
|
|
|
fancontrol = handleTest ./fancontrol.nix {};
|
2023-07-25 12:45:54 -05:00
|
|
|
fanout = handleTest ./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;
|
2022-01-23 12:11:05 +01:00
|
|
|
fenics = handleTest ./fenics.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
ferm = handleTest ./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;
|
2024-05-21 19:27:45 +03:00
|
|
|
filesender = handleTest ./filesender.nix {};
|
2024-02-03 22:40:40 +01:00
|
|
|
filesystems-overlayfs = runTest ./filesystems-overlayfs.nix;
|
2024-04-06 21:07:34 +05:30
|
|
|
firefly-iii = handleTest ./firefly-iii.nix {};
|
2024-08-02 21:34:22 +05:30
|
|
|
firefly-iii-data-importer = handleTest ./firefly-iii-data-importer.nix {};
|
2021-08-09 11:57:57 +02:00
|
|
|
firefox = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox; };
|
2023-03-24 14:18:26 +01:00
|
|
|
firefox-beta = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-beta; };
|
2023-03-24 14:16:22 +01:00
|
|
|
firefox-devedition = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-devedition; };
|
2021-08-10 16:15:57 +02:00
|
|
|
firefox-esr = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-esr; }; # used in `tested` job
|
2024-07-08 19:39:05 +02:00
|
|
|
firefox-esr-128 = handleTest ./firefox.nix { firefoxPackage = pkgs.firefox-esr-128; };
|
2023-01-08 01:08:00 +01:00
|
|
|
firefoxpwa = handleTest ./firefoxpwa.nix {};
|
2020-08-07 18:45:20 +02:00
|
|
|
firejail = handleTest ./firejail.nix {};
|
2022-12-23 00:23:23 +08:00
|
|
|
firewall = handleTest ./firewall.nix { nftables = false; };
|
|
|
|
firewall-nftables = handleTest ./firewall.nix { nftables = true; };
|
2018-12-17 20:12:09 +01:00
|
|
|
fish = handleTest ./fish.nix {};
|
2019-02-12 18:26:08 +01:00
|
|
|
flannel = handleTestOn ["x86_64-linux"] ./flannel.nix {};
|
2024-07-05 23:06:17 +03:00
|
|
|
flaresolverr = handleTest ./flaresolverr.nix {};
|
2024-06-05 15:14:56 -03:00
|
|
|
flood = handleTest ./flood.nix {};
|
2023-10-23 10:22:11 +02:00
|
|
|
floorp = handleTest ./firefox.nix { firefoxPackage = pkgs.floorp; };
|
2019-07-30 00:35:27 +09:00
|
|
|
fluentd = handleTest ./fluentd.nix {};
|
2021-08-21 22:51:01 +02:00
|
|
|
fluidd = handleTest ./fluidd.nix {};
|
2019-08-29 14:02:20 +02:00
|
|
|
fontconfig-default-fonts = handleTest ./fontconfig-default-fonts.nix {};
|
2024-07-31 03:59:13 +02:00
|
|
|
forgejo = handleTest ./forgejo.nix { forgejoPackage = pkgs.forgejo; };
|
|
|
|
forgejo-lts = handleTest ./forgejo.nix { forgejoPackage = pkgs.forgejo-lts; };
|
2022-11-29 18:30:00 +01:00
|
|
|
freenet = handleTest ./freenet.nix {};
|
2020-01-07 16:53:34 +02:00
|
|
|
freeswitch = handleTest ./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 {};
|
2023-03-30 13:06:31 +02:00
|
|
|
frigate = handleTest ./frigate.nix {};
|
2023-09-13 21:24:47 +08:00
|
|
|
frp = handleTest ./frp.nix {};
|
2021-06-08 21:37:03 +02:00
|
|
|
frr = handleTest ./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; };
|
2020-07-29 19:40:38 +02:00
|
|
|
ft2-clone = handleTest ./ft2-clone.nix {};
|
2023-05-24 09:48:02 -03:00
|
|
|
legit = handleTest ./legit.nix {};
|
2022-06-07 06:53:15 -04:00
|
|
|
mimir = handleTest ./mimir.nix {};
|
2024-05-03 10:35:19 +02:00
|
|
|
gancio = handleTest ./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 {};
|
2023-11-17 23:29:45 +01:00
|
|
|
geoserver = runTest ./geoserver.nix;
|
2020-03-05 22:11:28 +01:00
|
|
|
gerrit = handleTest ./gerrit.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
geth = handleTest ./geth.nix {};
|
2021-05-20 01:15:28 +02:00
|
|
|
ghostunnel = handleTest ./ghostunnel.nix {};
|
2020-02-26 14:05:00 +01:00
|
|
|
gitdaemon = handleTest ./gitdaemon.nix {};
|
2023-02-24 02:59:30 +01:00
|
|
|
gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
|
2023-02-26 13:50:49 +01:00
|
|
|
github-runner = handleTest ./github-runner.nix {};
|
2023-05-11 07:07:37 +00:00
|
|
|
gitlab = runTest ./gitlab.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
gitolite = handleTest ./gitolite.nix {};
|
2019-12-04 18:10:57 -05:00
|
|
|
gitolite-fcgiwrap = handleTest ./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;
|
2019-08-17 01:28:43 +02:00
|
|
|
glusterfs = handleTest ./glusterfs.nix {};
|
2021-05-07 23:18:14 +02:00
|
|
|
gnome = handleTest ./gnome.nix {};
|
2023-10-15 15:57:54 +02:00
|
|
|
gnome-extensions = handleTest ./gnome-extensions.nix {};
|
2022-12-28 22:45:22 +01:00
|
|
|
gnome-flashback = handleTest ./gnome-flashback.nix {};
|
2021-05-07 23:18:14 +02:00
|
|
|
gnome-xorg = handleTest ./gnome-xorg.nix {};
|
2023-10-22 23:04:25 +02:00
|
|
|
gns3-server = handleTest ./gns3-server.nix {};
|
2023-02-02 18:17:40 +01:00
|
|
|
gnupg = handleTest ./gnupg.nix {};
|
2024-07-15 00:44:11 +05:30
|
|
|
goatcounter = handleTest ./goatcounter.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
go-neb = handleTest ./go-neb.nix {};
|
2021-04-09 14:57:33 +00:00
|
|
|
gobgpd = handleTest ./gobgpd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
gocd-agent = handleTest ./gocd-agent.nix {};
|
|
|
|
gocd-server = handleTest ./gocd-server.nix {};
|
2022-09-10 18:01:37 +02:00
|
|
|
gollum = handleTest ./gollum.nix {};
|
2022-12-21 01:08:48 +01:00
|
|
|
gonic = handleTest ./gonic.nix {};
|
2019-05-16 21:29:17 -04:00
|
|
|
google-oslogin = handleTest ./google-oslogin {};
|
2025-02-14 11:45:47 -07:00
|
|
|
gopro-tool = handleTest ./gopro-tool.nix {};
|
2023-10-25 13:54:47 +02:00
|
|
|
goss = handleTest ./goss.nix {};
|
2024-07-11 03:07:40 -04:00
|
|
|
gotenberg = handleTest ./gotenberg.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
gotify-server = handleTest ./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 {};
|
2022-06-15 12:11:03 +02:00
|
|
|
grafana-agent = handleTest ./grafana-agent.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
graphite = handleTest ./graphite.nix {};
|
2024-11-10 09:53:20 +01:00
|
|
|
grav = runTest ./web-apps/grav.nix;
|
2019-07-09 02:01:43 +02:00
|
|
|
graylog = handleTest ./graylog.nix {};
|
2024-05-16 22:09:13 +10:00
|
|
|
greetd-no-shadow = handleTest ./greetd-no-shadow.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
grocy = handleTest ./grocy.nix {};
|
2023-10-16 16:58:19 +00:00
|
|
|
grow-partition = runTest ./grow-partition.nix;
|
2020-06-13 12:06:26 +02:00
|
|
|
grub = handleTest ./grub.nix {};
|
2023-06-16 19:12:42 +02:00
|
|
|
guacamole-server = handleTest ./guacamole-server.nix {};
|
2023-10-29 14:44:03 +08:00
|
|
|
guix = handleTest ./guix {};
|
2019-11-26 23:01:46 -08:00
|
|
|
gvisor = handleTest ./gvisor.nix {};
|
2025-02-12 12:42:02 +07:00
|
|
|
h2o = discoverTests (import ./web-servers/h2o { inherit handleTestOn; });
|
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; };
|
2022-01-23 12:11:05 +01:00
|
|
|
haka = handleTest ./haka.nix {};
|
2022-03-02 18:00:16 +01:00
|
|
|
haste-server = handleTest ./haste-server.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
haproxy = handleTest ./haproxy.nix {};
|
2019-01-06 14:04:41 +01:00
|
|
|
hardened = handleTest ./hardened.nix {};
|
2023-05-10 19:41:25 +03:00
|
|
|
harmonia = runTest ./harmonia.nix;
|
2022-12-01 16:47:24 +01:00
|
|
|
headscale = handleTest ./headscale.nix {};
|
2022-06-10 14:31:00 +02:00
|
|
|
healthchecks = handleTest ./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; };
|
2023-06-25 12:35:47 -04:00
|
|
|
hddfancontrol = handleTest ./hddfancontrol.nix {};
|
2020-11-29 18:51:50 +01:00
|
|
|
hedgedoc = handleTest ./hedgedoc.nix {};
|
2020-11-27 19:20:36 +00:00
|
|
|
herbstluftwm = handleTest ./herbstluftwm.nix {};
|
2024-06-15 15:25:40 +02:00
|
|
|
homebox = handleTest ./homebox.nix {};
|
2024-12-27 18:36:59 +01:00
|
|
|
homer = handleTest ./homer {};
|
2023-07-12 16:46:28 +01:00
|
|
|
homepage-dashboard = handleTest ./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 {});
|
2021-09-07 19:44:12 +02:00
|
|
|
invidious = handleTest ./invidious.nix {};
|
2024-04-22 05:58:48 +08:00
|
|
|
isolate = handleTest ./isolate.nix {};
|
2023-10-24 17:53:12 +01:00
|
|
|
livebook-service = handleTest ./livebook-service.nix {};
|
2023-12-24 22:23:15 +01:00
|
|
|
pyload = handleTest ./pyload.nix {};
|
2022-09-24 15:58:01 +10:00
|
|
|
oci-containers = handleTestOn ["aarch64-linux" "x86_64-linux"] ./oci-containers.nix {};
|
2021-11-02 01:48:47 +01:00
|
|
|
odoo = handleTest ./odoo.nix {};
|
2024-10-11 01:13:06 +05:30
|
|
|
odoo17 = handleTest ./odoo.nix { package = pkgs.odoo17; };
|
2024-06-19 13:35:20 +00:00
|
|
|
odoo16 = handleTest ./odoo.nix { package = pkgs.odoo16; };
|
2023-08-24 22:04:40 +02:00
|
|
|
odoo15 = handleTest ./odoo.nix { package = pkgs.odoo15; };
|
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 {};
|
2020-01-20 12:34:57 +01:00
|
|
|
hledger-web = handleTest ./hledger-web.nix {};
|
2021-07-18 09:51:49 +02:00
|
|
|
hockeypuck = handleTest ./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 {};
|
2018-11-11 20:30:07 +09:00
|
|
|
hound = handleTest ./hound.nix {};
|
2020-12-29 11:13:26 -05:00
|
|
|
hub = handleTest ./git/hub.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
hydra = handleTest ./hydra {};
|
|
|
|
i3wm = handleTest ./i3wm.nix {};
|
2019-07-07 03:03:59 +02:00
|
|
|
icingaweb2 = handleTest ./icingaweb2.nix {};
|
2024-07-18 17:17:36 +02:00
|
|
|
ifm = handleTest ./ifm.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
iftop = handleTest ./iftop.nix {};
|
2024-07-02 20:18:19 +01:00
|
|
|
immich = handleTest ./web-apps/immich.nix {};
|
2024-11-29 11:26:07 -08:00
|
|
|
immich-public-proxy = handleTest ./web-apps/immich-public-proxy.nix {};
|
2018-11-14 23:51:15 +01:00
|
|
|
incron = handleTest ./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; });
|
2018-11-11 20:30:07 +09:00
|
|
|
influxdb = handleTest ./influxdb.nix {};
|
2023-08-15 00:26:41 +02:00
|
|
|
influxdb2 = handleTest ./influxdb2.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 {};
|
2023-03-22 09:17:23 -05:00
|
|
|
initrd-luks-empty-passphrase = handleTest ./initrd-luks-empty-passphrase.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
initrdNetwork = handleTest ./initrd-network.nix {};
|
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 {};
|
2022-02-18 13:47:54 -08:00
|
|
|
input-remapper = handleTest ./input-remapper.nix {};
|
2021-03-22 14:32:46 +01:00
|
|
|
inspircd = handleTest ./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 {};
|
2023-03-17 21:39:03 +13:00
|
|
|
intune = handleTest ./intune.nix {};
|
2022-01-20 14:45:35 +01:00
|
|
|
invoiceplane = handleTest ./invoiceplane.nix {};
|
2020-02-02 12:00:00 +00:00
|
|
|
iodine = handleTest ./iodine.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
ipv6 = handleTest ./ipv6.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
iscsi-multipath-root = handleTest ./iscsi-multipath-root.nix {};
|
2020-10-18 19:55:42 +02:00
|
|
|
iscsi-root = handleTest ./iscsi-root.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
isso = handleTest ./isso.nix {};
|
2019-01-25 07:09:36 +01:00
|
|
|
jackett = handleTest ./jackett.nix {};
|
2019-05-01 11:57:34 +02:00
|
|
|
jellyfin = handleTest ./jellyfin.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
jenkins = handleTest ./jenkins.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
jenkins-cli = handleTest ./jenkins-cli.nix {};
|
2021-10-15 11:00:24 -07:00
|
|
|
jibri = handleTest ./jibri.nix {};
|
2020-02-06 16:00:19 +00:00
|
|
|
jirafeau = handleTest ./jirafeau.nix {};
|
2020-03-18 04:23:15 +01:00
|
|
|
jitsi-meet = handleTest ./jitsi-meet.nix {};
|
2023-07-01 18:50:08 +02:00
|
|
|
jool = import ./jool.nix { inherit pkgs runTest; };
|
2024-04-06 10:02:46 +02:00
|
|
|
jotta-cli = handleTest ./jotta-cli.nix {};
|
2022-07-21 23:13:20 -07:00
|
|
|
k3s = handleTest ./k3s {};
|
2019-04-01 08:39:25 -04:00
|
|
|
kafka = handleTest ./kafka.nix {};
|
2024-12-09 09:17:10 +08:00
|
|
|
kanboard = handleTest ./web-apps/kanboard.nix {};
|
2022-05-05 12:09:42 +02:00
|
|
|
kanidm = handleTest ./kanidm.nix {};
|
2024-03-10 21:32:24 +01:00
|
|
|
kanidm-provisioning = handleTest ./kanidm-provisioning.nix {};
|
2022-10-10 10:46:25 +05:30
|
|
|
karma = handleTest ./karma.nix {};
|
2023-04-30 00:27:25 -03:00
|
|
|
kavita = handleTest ./kavita.nix {};
|
2021-05-31 02:37:14 +08:00
|
|
|
kbd-setfont-decompress = handleTest ./kbd-setfont-decompress.nix {};
|
2021-07-20 02:21:02 +07:00
|
|
|
kbd-update-search-paths-patch = handleTest ./kbd-update-search-paths-patch.nix {};
|
2021-07-14 00:43:17 +02:00
|
|
|
kea = handleTest ./kea.nix {};
|
2019-12-22 07:45:31 +00:00
|
|
|
keepalived = handleTest ./keepalived.nix {};
|
2021-02-02 12:35:46 +01:00
|
|
|
keepassxc = handleTest ./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 {};
|
2021-01-31 14:55:53 +01:00
|
|
|
kernel-latest-ath-user-regd = handleTest ./kernel-latest-ath-user-regd.nix {};
|
2024-03-27 16:15:37 +01:00
|
|
|
kernel-rust = handleTest ./kernel-rust.nix {};
|
2022-05-18 09:41:54 -04:00
|
|
|
keter = handleTest ./keter.nix {};
|
2021-10-25 00:20:46 +02:00
|
|
|
kexec = handleTest ./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 {};
|
2024-11-02 05:50:17 +07:00
|
|
|
kimai = handleTest ./kimai.nix {};
|
2025-01-01 10:10:00 +08:00
|
|
|
kmonad = runTest ./kmonad.nix;
|
2019-03-13 01:12:56 +01:00
|
|
|
knot = handleTest ./knot.nix {};
|
2022-08-12 23:52:52 +02:00
|
|
|
komga = handleTest ./komga.nix {};
|
2023-12-23 22:40:56 -06:00
|
|
|
krb5 = discoverTests (import ./krb5);
|
2021-02-26 13:06:18 +01:00
|
|
|
ksm = handleTest ./ksm.nix {};
|
2022-09-26 00:16:03 +05:30
|
|
|
kthxbye = handleTest ./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; };
|
2022-08-16 15:03:37 +02:00
|
|
|
ladybird = handleTest ./ladybird.nix {};
|
2022-08-16 20:33:08 +02:00
|
|
|
languagetool = handleTest ./languagetool.nix {};
|
2023-09-17 17:12:55 +02:00
|
|
|
lanraragi = handleTest ./lanraragi.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
latestKernel.login = handleTest ./login.nix { latestKernel = true; };
|
|
|
|
leaps = handleTest ./leaps.nix {};
|
2022-09-02 02:02:51 -07:00
|
|
|
lemmy = handleTest ./lemmy.nix {};
|
2021-11-15 08:46:20 -03:00
|
|
|
libinput = handleTest ./libinput.nix {};
|
2023-10-05 16:09:58 +02:00
|
|
|
librenms = handleTest ./librenms.nix {};
|
2021-11-18 19:10:48 +01:00
|
|
|
libresprite = handleTest ./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;
|
2022-07-08 17:40:24 -07:00
|
|
|
librewolf = handleTest ./firefox.nix { firefoxPackage = pkgs.librewolf; };
|
2022-07-15 21:00:28 +01:00
|
|
|
libuiohook = handleTest ./libuiohook.nix {};
|
2022-08-22 05:17:06 +02:00
|
|
|
libvirtd = handleTest ./libvirtd.nix {};
|
2021-11-15 08:46:20 -03:00
|
|
|
lidarr = handleTest ./lidarr.nix {};
|
2019-08-06 18:29:50 -04:00
|
|
|
lightdm = handleTest ./lightdm.nix {};
|
2022-07-24 17:04:12 +02:00
|
|
|
lighttpd = handleTest ./lighttpd.nix {};
|
2019-03-16 08:24:23 -04:00
|
|
|
limesurvey = handleTest ./limesurvey.nix {};
|
2023-08-23 17:50:28 +02:00
|
|
|
listmonk = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./listmonk.nix {};
|
2021-07-30 17:41:54 +02:00
|
|
|
litestream = handleTest ./litestream.nix {};
|
2023-04-27 15:26:57 +02:00
|
|
|
lldap = handleTest ./lldap.nix {};
|
2024-05-12 17:07:22 -05:00
|
|
|
localsend = handleTest ./localsend.nix {};
|
2020-11-23 17:53:21 -08:00
|
|
|
locate = handleTest ./locate.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
login = handleTest ./login.nix {};
|
2022-02-11 17:49:52 +09:00
|
|
|
logrotate = handleTest ./logrotate.nix {};
|
2019-06-27 18:11:09 +02:00
|
|
|
loki = handleTest ./loki.nix {};
|
2023-02-20 08:19:02 +01:00
|
|
|
luks = handleTest ./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; });
|
2021-10-20 23:39:53 +02:00
|
|
|
lxd-image-server = handleTest ./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;
|
2024-02-15 09:59:39 +01:00
|
|
|
lomiri-system-settings = handleTest ./lomiri-system-settings.nix {};
|
2019-11-05 11:57:05 +01:00
|
|
|
lorri = handleTest ./lorri/default.nix {};
|
2025-01-27 00:06:25 +08:00
|
|
|
lxqt = handleTest ./lxqt.nix {};
|
2024-03-20 16:48:22 +08:00
|
|
|
ly = handleTest ./ly.nix {};
|
2023-04-21 08:59:13 +02:00
|
|
|
maddy = discoverTests (import ./maddy { inherit handleTest; });
|
2022-04-01 10:41:31 +08:00
|
|
|
maestral = handleTest ./maestral.nix {};
|
2020-03-30 13:30:05 +02:00
|
|
|
magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
magnetico = handleTest ./magnetico.nix {};
|
2019-03-27 07:35:24 -04:00
|
|
|
mailcatcher = handleTest ./mailcatcher.nix {};
|
2020-12-17 16:58:57 +01:00
|
|
|
mailhog = handleTest ./mailhog.nix {};
|
2024-07-24 15:48:20 +02:00
|
|
|
mailpit = handleTest ./mailpit.nix {};
|
2023-02-09 17:56:56 +00:00
|
|
|
mailman = handleTest ./mailman.nix {};
|
2021-09-24 20:54:08 +02:00
|
|
|
man = handleTest ./man.nix {};
|
2021-12-08 09:47:07 +00:00
|
|
|
mariadb-galera = handleTest ./mysql/mariadb-galera.nix {};
|
2024-12-12 06:12:54 +01:00
|
|
|
marytts = handleTest ./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; });
|
2023-01-08 23:44:00 +08:00
|
|
|
mate = handleTest ./mate.nix {};
|
2024-03-12 22:29:08 +08:00
|
|
|
mate-wayland = handleTest ./mate-wayland.nix {};
|
2023-10-28 23:16:44 -04:00
|
|
|
matter-server = handleTest ./matter-server.nix {};
|
2025-01-15 12:42:39 +01:00
|
|
|
matomo = runTest ./matomo.nix;
|
2024-09-04 20:35:52 +02:00
|
|
|
matrix-appservice-irc = runTest ./matrix/appservice-irc.nix;
|
2022-05-13 16:46:01 +09:00
|
|
|
matrix-conduit = handleTest ./matrix/conduit.nix {};
|
|
|
|
matrix-synapse = handleTest ./matrix/synapse.nix {};
|
2023-07-07 11:27:55 +02:00
|
|
|
matrix-synapse-workers = handleTest ./matrix/synapse-workers.nix {};
|
2024-03-17 18:56:18 +01:00
|
|
|
mautrix-meta-postgres = handleTest ./matrix/mautrix-meta-postgres.nix {};
|
|
|
|
mautrix-meta-sqlite = handleTest ./matrix/mautrix-meta-sqlite.nix {};
|
2024-10-21 23:05:06 -07:00
|
|
|
mattermost = handleTest ./mattermost {};
|
2024-02-01 08:30:57 +01:00
|
|
|
mealie = handleTest ./mealie.nix {};
|
2023-08-10 20:43:26 +02:00
|
|
|
mediamtx = handleTest ./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 {};
|
2020-04-07 12:00:43 +03:00
|
|
|
meilisearch = handleTest ./meilisearch.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
memcached = handleTest ./memcached.nix {};
|
2022-10-19 10:49:57 +02:00
|
|
|
merecat = handleTest ./merecat.nix {};
|
2019-08-18 09:28:16 +02:00
|
|
|
metabase = handleTest ./metabase.nix {};
|
2024-02-10 22:43:17 +08:00
|
|
|
mihomo = handleTest ./mihomo.nix {};
|
2023-01-15 00:28:32 +01:00
|
|
|
mindustry = handleTest ./mindustry.nix {};
|
2020-11-28 12:42:10 -05:00
|
|
|
minecraft = handleTest ./minecraft.nix {};
|
2020-11-28 12:42:46 -05:00
|
|
|
minecraft-server = handleTest ./minecraft-server.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
minidlna = handleTest ./minidlna.nix {};
|
2018-12-21 10:36:58 -08:00
|
|
|
miniflux = handleTest ./miniflux.nix {};
|
2019-02-05 17:38:34 +01:00
|
|
|
minio = handleTest ./minio.nix {};
|
2024-06-10 15:55:54 +02:00
|
|
|
miracle-wm = runTest ./miracle-wm.nix;
|
2023-02-04 02:23:14 +01:00
|
|
|
miriway = handleTest ./miriway.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
misc = handleTest ./misc.nix {};
|
2024-06-12 17:34:42 +02:00
|
|
|
misskey = handleTest ./misskey.nix {};
|
2021-05-30 17:33:09 +02:00
|
|
|
mjolnir = handleTest ./matrix/mjolnir.nix {};
|
2025-01-16 11:38:53 +01:00
|
|
|
mobilizon = runTest ./mobilizon.nix;
|
2021-08-13 20:55:15 +02:00
|
|
|
mod_perl = handleTest ./mod_perl.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
molly-brown = handleTest ./molly-brown.nix {};
|
2024-01-05 03:10:12 -08:00
|
|
|
mollysocket = handleTest ./mollysocket.nix { };
|
2023-12-18 17:48:48 +01:00
|
|
|
monado = handleTest ./monado.nix {};
|
2024-03-19 21:54:05 +01:00
|
|
|
monetdb = handleTest ./monetdb.nix {};
|
2023-04-16 11:21:57 +02:00
|
|
|
monica = handleTest ./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;
|
|
|
|
});
|
2019-06-21 10:09:15 -04:00
|
|
|
moodle = handleTest ./moodle.nix {};
|
2022-03-22 15:35:39 -07:00
|
|
|
moonraker = handleTest ./moonraker.nix {};
|
2024-11-14 23:40:14 +01:00
|
|
|
mopidy = handleTest ./mopidy.nix {};
|
2024-02-22 10:36:50 +01:00
|
|
|
morph-browser = handleTest ./morph-browser.nix { };
|
2018-11-11 20:30:07 +09:00
|
|
|
morty = handleTest ./morty.nix {};
|
2019-04-24 16:23:13 +08:00
|
|
|
mosquitto = handleTest ./mosquitto.nix {};
|
2021-10-06 21:51:07 +02:00
|
|
|
moosefs = handleTest ./moosefs.nix {};
|
2024-03-22 23:49:50 +07:00
|
|
|
movim = discoverTests (import ./web-apps/movim { inherit handleTestOn; });
|
2018-11-11 20:30:07 +09:00
|
|
|
mpd = handleTest ./mpd.nix {};
|
2021-08-01 00:44:02 +02:00
|
|
|
mpv = handleTest ./mpv.nix {};
|
2021-11-15 05:58:12 +00:00
|
|
|
mtp = handleTest ./mtp.nix {};
|
2023-02-03 09:28:48 +00:00
|
|
|
multipass = handleTest ./multipass.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
mumble = handleTest ./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;
|
2018-11-11 20:30:07 +09:00
|
|
|
munin = handleTest ./munin.nix {};
|
|
|
|
mutableUsers = handleTest ./mutable-users.nix {};
|
2024-03-18 17:40:30 +01:00
|
|
|
mycelium = handleTest ./mycelium {};
|
2023-12-18 23:31:29 +02:00
|
|
|
mympd = handleTest ./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 {};
|
2020-11-28 18:00:25 +01:00
|
|
|
n8n = handleTest ./n8n.nix {};
|
2024-05-03 20:40:22 +02:00
|
|
|
nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix {};
|
2020-11-07 00:59:51 +07:00
|
|
|
nar-serve = handleTest ./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; };
|
2021-06-26 13:58:40 +02:00
|
|
|
nats = handleTest ./nats.nix {};
|
2020-12-05 19:11:21 +01:00
|
|
|
navidrome = handleTest ./navidrome.nix {};
|
2022-03-06 13:49:57 +00:00
|
|
|
nbd = handleTest ./nbd.nix {};
|
2020-06-07 23:59:12 +02:00
|
|
|
ncdns = handleTest ./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";
|
|
|
|
};
|
2019-02-03 16:47:01 +01:00
|
|
|
ndppd = handleTest ./ndppd.nix {};
|
2024-07-16 22:00:16 +02:00
|
|
|
nix-channel = pkgs.callPackage ../modules/config/nix-channel/test.nix { };
|
2021-03-04 21:28:58 -08:00
|
|
|
nebula = handleTest ./nebula.nix {};
|
2022-08-14 19:59:15 +03:00
|
|
|
netbird = handleTest ./netbird.nix {};
|
2024-03-16 19:13:51 +01:00
|
|
|
nimdow = handleTest ./nimdow.nix {};
|
2019-02-01 14:29:54 +01:00
|
|
|
neo4j = handleTest ./neo4j.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
netdata = handleTest ./netdata.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 {};
|
2023-09-24 10:06:08 +02:00
|
|
|
netbox_3_6 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_6; };
|
2024-01-22 16:17:57 +01:00
|
|
|
netbox_3_7 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_3_7; };
|
2024-08-02 10:58:19 +02:00
|
|
|
netbox_4_0 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_4_0; };
|
2024-10-07 16:14:33 +02:00
|
|
|
netbox_4_1 = handleTest ./web-apps/netbox.nix { netbox = pkgs.netbox_4_1; };
|
2023-07-31 14:56:05 +02:00
|
|
|
netbox-upgrade = handleTest ./web-apps/netbox-upgrade.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
# TODO: put in networking.nix after the test becomes more complete
|
|
|
|
networkingProxy = handleTest ./networking-proxy.nix {};
|
|
|
|
nextcloud = handleTest ./nextcloud {};
|
2024-09-30 11:15:23 +02:00
|
|
|
nextflow = handleTestOn ["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;
|
2018-11-11 20:30:07 +09:00
|
|
|
nexus = handleTest ./nexus.nix {};
|
2019-11-27 14:37:27 +00:00
|
|
|
# TODO: Test nfsv3 + Kerberos
|
|
|
|
nfs3 = handleTest ./nfs { version = 3; };
|
|
|
|
nfs4 = handleTest ./nfs { version = 4; };
|
2018-11-11 20:30:07 +09:00
|
|
|
nghttpx = handleTest ./nghttpx.nix {};
|
|
|
|
nginx = handleTest ./nginx.nix {};
|
2020-10-20 16:05:41 +00:00
|
|
|
nginx-auth = handleTest ./nginx-auth.nix {};
|
nginx: Clear Last-Modified if ETag is from store
This is what I've suspected a while ago[1]:
> Heads-up everyone: After testing this in a few production instances,
> it seems that some browsers still get cache hits for new store paths
> (and changed contents) for some reason. I highly suspect that it might
> be due to the last-modified header (as mentioned in [2]).
>
> Going to test this with last-modified disabled for a little while and
> if this is the case I think we should improve that patch by disabling
> last-modified if serving from a store path.
Much earlier[2] when I reviewed the patch, I wrote this:
> Other than that, it looks good to me.
>
> However, I'm not sure what we should do with Last-Modified header.
> From RFC 2616, section 13.3.4:
>
> - If both an entity tag and a Last-Modified value have been
> provided by the origin server, SHOULD use both validators in
> cache-conditional requests. This allows both HTTP/1.0 and
> HTTP/1.1 caches to respond appropriately.
>
> I'm a bit nervous about the SHOULD here, as user agents in the wild
> could possibly just use Last-Modified and use the cached content
> instead.
Unfortunately, I didn't pursue this any further back then because
@pbogdan noted[3] the following:
> Hmm, could they (assuming they are conforming):
>
> * If an entity tag has been provided by the origin server, MUST
> use that entity tag in any cache-conditional request (using If-
> Match or If-None-Match).
Since running with this patch in some deployments, I found that both
Firefox and Chrome/Chromium do NOT re-validate against the ETag if the
Last-Modified header is still the same.
So I wrote a small NixOS VM test with Geckodriver to have a test case
which is closer to the real world and I indeed was able to reproduce
this.
Whether this is actually a bug in Chrome or Firefox is an entirely
different issue and even IF it is the fault of the browsers and it is
fixed at some point, we'd still need to handle this for older browser
versions.
Apart from clearing the header, I also recreated the patch by using a
plain "git diff" with a small description on top. This should make it
easier for future authors to work on that patch.
[1]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-495072764
[2]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-451644084
[3]: https://github.com/NixOS/nixpkgs/pull/48337#issuecomment-451646135
Signed-off-by: aszlig <aszlig@nix.build>
2019-12-30 14:06:00 +01:00
|
|
|
nginx-etag = handleTest ./nginx-etag.nix {};
|
nginx: change etags for statically compressed files served from store
Per RFC 9110, [section 8.8.1][1], different representations of the same
resource should have different Etags:
> A strong validator is unique across all versions of all
> representations associated with a particular resource over time.
> However, there is no implication of uniqueness across representations
> of different resources (i.e., the same strong validator might be in
> use for representations of multiple resources at the same time and
> does not imply that those representations are equivalent)
When serving statically compressed files (ie, when there is an existing
corresponding .gz/.br/etc. file on disk), Nginx sends the Etag marked
as strong. These tags should be different for each compressed format
(as shown in an explicit example in section [8.8.3.3][2] of the RFC).
Upstream Etags are composed of the file modification timestamp and
content length, and the latter generally changes between these
representations.
Previous implementation of Nix-specific Etags for things served from
store used the store hash. This is fine to share between different
files, but it becomes a problem for statically compressed versions of
the same file, as it means Nginx was serving different representations
of the same resource with the same Etag, marked as strong.
This patch addresses this by imitating the upstream Nginx behavior, and
appending the value of content length to the store hash.
[1]: https://www.rfc-editor.org/rfc/rfc9110.html#name-validator-fields
[2]:
https://www.rfc-editor.org/rfc/rfc9110.html#name-example-entity-tags-varying
2024-01-02 20:29:15 +01:00
|
|
|
nginx-etag-compression = handleTest ./nginx-etag-compression.nix {};
|
2022-12-03 18:58:33 +01:00
|
|
|
nginx-globalredirect = handleTest ./nginx-globalredirect.nix {};
|
2022-04-18 13:22:39 +03:00
|
|
|
nginx-http3 = handleTest ./nginx-http3.nix {};
|
2024-09-25 20:55:38 +03:00
|
|
|
nginx-mime = handleTest ./nginx-mime.nix {};
|
2022-02-15 00:10:37 +01:00
|
|
|
nginx-modsecurity = handleTest ./nginx-modsecurity.nix {};
|
2024-01-15 17:25:21 +01:00
|
|
|
nginx-moreheaders = handleTest ./nginx-moreheaders.nix {};
|
2022-09-18 14:54:04 +02:00
|
|
|
nginx-njs = handleTest ./nginx-njs.nix {};
|
2023-07-28 20:30:43 +02:00
|
|
|
nginx-proxyprotocol = handleTest ./nginx-proxyprotocol {};
|
nginx: Fix ETag patch to ignore realpath(3) error
While our ETag patch works pretty fine if it comes to serving data off
store paths, it unfortunately broke something that might be a bit more
common, namely when using regexes to extract path components of
location directives for example.
Recently, @devhell has reported a bug with a nginx location directive
like this:
location ~^/\~([a-z0-9_]+)(/.*)?$" {
alias /home/$1/public_html$2;
}
While this might look harmless at first glance, it does however cause
issues with our ETag patch. The alias directive gets broken up by nginx
like this:
*2 http script copy: "/home/"
*2 http script capture: "foo"
*2 http script copy: "/public_html/"
*2 http script capture: "bar.txt"
In our patch however, we use realpath(3) to get the canonicalised path
from ngx_http_core_loc_conf_s.root, which returns the *configured* value
from the root or alias directive. So in the example above, realpath(3)
boils down to the following syscalls:
lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
lstat("/home/$1", 0x7ffd08da6f60) = -1 ENOENT (No such file or directory)
During my review[1] of the initial patch, I didn't actually notice that
what we're doing here is returning NGX_ERROR if the realpath(3) call
fails, which in turn causes an HTTP 500 error.
Since our patch actually made the canonicalisation (and thus additional
syscalls) necessary, we really shouldn't introduce an additional error
so let's - at least for now - silently skip return value if realpath(3)
has failed.
However since we're using the unaltered root from the config we have
another issue, consider this root:
/nix/store/...-abcde/$1
Calling realpath(3) on this path will fail (except if there's a file
called "$1" of course), so even this fix is not enough because it
results in the ETag not being set to the store path hash.
While this is very ugly and we should fix this very soon, it's not as
serious as getting HTTP 500 errors for serving static files.
I added a small NixOS VM test, which uses the example above as a
regression test.
It seems that my memory is failing these days, since apparently I *knew*
about this issue since digging for existing issues in nixpkgs, I found
this similar pull request which I even reviewed:
https://github.com/NixOS/nixpkgs/pull/66532
However, since the comments weren't addressed and the author hasn't
responded to the pull request, I decided to keep this very commit and do
a follow-up pull request.
[1]: https://github.com/NixOS/nixpkgs/pull/48337
Signed-off-by: aszlig <aszlig@nix.build>
Reported-by: @devhell
Acked-by: @7c6f434c
Acked-by: @yorickvP
Merges: https://github.com/NixOS/nixpkgs/pull/80671
Fixes: https://github.com/NixOS/nixpkgs/pull/66532
2020-02-20 20:43:42 +01:00
|
|
|
nginx-pubhtml = handleTest ./nginx-pubhtml.nix {};
|
2023-12-01 15:42:46 -03:00
|
|
|
nginx-redirectcode = handleTest ./nginx-redirectcode.nix {};
|
2018-12-28 11:41:52 +01:00
|
|
|
nginx-sso = handleTest ./nginx-sso.nix {};
|
2023-07-28 19:36:55 +02:00
|
|
|
nginx-status-page = handleTest ./nginx-status-page.nix {};
|
2023-10-06 14:26:06 +02:00
|
|
|
nginx-tmpdir = handleTest ./nginx-tmpdir.nix {};
|
2023-07-07 11:52:37 -04:00
|
|
|
nginx-unix-socket = handleTest ./nginx-unix-socket.nix {};
|
2020-06-02 17:01:03 +12:00
|
|
|
nginx-variants = handleTest ./nginx-variants.nix {};
|
2022-04-10 20:41:30 +03:00
|
|
|
nifi = handleTestOn ["x86_64-linux"] ./web-apps/nifi.nix {};
|
2021-07-26 12:00:05 +02:00
|
|
|
nitter = handleTest ./nitter.nix {};
|
2024-01-01 12:00:00 +00:00
|
|
|
nix-config = handleTest ./nix-config.nix {};
|
2022-04-11 21:51:29 +03:00
|
|
|
nix-ld = handleTest ./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;
|
2021-12-03 18:19:42 +02:00
|
|
|
nix-serve-ssh = handleTest ./nix-serve-ssh.nix {};
|
2021-10-18 00:38:58 +02:00
|
|
|
nixops = handleTest ./nixops/default.nix {};
|
2019-08-07 18:04:18 +02:00
|
|
|
nixos-generate-config = handleTest ./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; };
|
2023-11-29 12:00:00 +00:00
|
|
|
nixseparatedebuginfod = handleTest ./nixseparatedebuginfod.nix {};
|
2021-07-28 11:42:26 +01:00
|
|
|
node-red = handleTest ./node-red.nix {};
|
2021-01-23 17:52:19 -05:00
|
|
|
nomad = handleTest ./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;
|
2022-01-22 10:06:13 +08:00
|
|
|
noto-fonts = handleTest ./noto-fonts.nix {};
|
2023-03-21 15:59:24 +08:00
|
|
|
noto-fonts-cjk-qt-default-weight = handleTest ./noto-fonts-cjk-qt-default-weight.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
novacomd = handleTestOn ["x86_64-linux"] ./novacomd.nix {};
|
2023-11-02 20:43:20 +13:00
|
|
|
npmrc = handleTest ./npmrc.nix {};
|
2022-10-07 11:40:33 +02:00
|
|
|
nscd = handleTest ./nscd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
nsd = handleTest ./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 {};
|
2024-10-19 14:26:27 -04:00
|
|
|
ntpd = handleTest ./ntpd.nix {};
|
2023-10-31 14:28:49 +00:00
|
|
|
ntpd-rs = handleTest ./ntpd-rs.nix {};
|
2024-08-22 17:51:54 +00:00
|
|
|
nvidia-container-toolkit = runTest ./nvidia-container-toolkit.nix;
|
2024-02-01 13:34:05 -05:00
|
|
|
nvmetcfg = handleTest ./nvmetcfg.nix {};
|
2019-04-22 08:06:33 -04:00
|
|
|
nzbget = handleTest ./nzbget.nix {};
|
2020-10-04 16:06:53 +02:00
|
|
|
nzbhydra2 = handleTest ./nzbhydra2.nix {};
|
2024-03-18 17:59:16 +05:30
|
|
|
ocis = handleTest ./ocis.nix {};
|
2024-04-06 23:41:28 +02:00
|
|
|
oddjobd = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./oddjobd.nix {};
|
2024-09-28 17:43:06 +00:00
|
|
|
obs-studio = handleTest ./obs-studio.nix {};
|
2020-11-04 20:37:50 -05:00
|
|
|
oh-my-zsh = handleTest ./oh-my-zsh.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;
|
2021-03-29 17:51:05 +03:00
|
|
|
ombi = handleTest ./ombi.nix {};
|
2019-10-23 01:20:56 +11:00
|
|
|
openarena = handleTest ./openarena.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
openldap = handleTest ./openldap.nix {};
|
2023-02-15 16:11:39 +01:00
|
|
|
opensearch = discoverTests (import ./opensearch.nix);
|
2021-10-06 23:36:02 -04:00
|
|
|
openresty-lua = handleTest ./openresty-lua.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 {};
|
2023-08-08 22:00:52 +02:00
|
|
|
opensnitch = handleTest ./opensnitch.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
openssh = handleTest ./openssh.nix {};
|
2023-01-28 20:02:15 +01:00
|
|
|
octoprint = handleTest ./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 {};
|
2021-01-08 13:48:00 -03:00
|
|
|
opentabletdriver = handleTest ./opentabletdriver.nix {};
|
2023-05-09 11:31:47 -06:00
|
|
|
opentelemetry-collector = handleTest ./opentelemetry-collector.nix {};
|
2024-09-16 16:37:49 +02:00
|
|
|
open-web-calendar = handleTest ./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 {};
|
2021-09-23 10:48:29 +02:00
|
|
|
owncast = handleTest ./owncast.nix {};
|
2023-05-17 13:10:57 +02:00
|
|
|
outline = handleTest ./outline.nix {};
|
2020-12-20 21:18:54 +01:00
|
|
|
image-contents = handleTest ./image-contents.nix {};
|
2023-05-15 15:33:37 +02:00
|
|
|
openvscode-server = handleTest ./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;
|
2019-08-21 00:27:14 +02:00
|
|
|
orangefs = handleTest ./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 {};
|
2019-01-05 13:13:10 +01:00
|
|
|
osrm-backend = handleTest ./osrm-backend.nix {};
|
2019-01-23 10:19:23 +01:00
|
|
|
overlayfs = handleTest ./overlayfs.nix {};
|
2022-03-08 02:46:26 +01:00
|
|
|
pacemaker = handleTest ./pacemaker.nix {};
|
2019-04-24 16:45:29 +08:00
|
|
|
packagekit = handleTest ./packagekit.nix {};
|
2021-11-27 21:04:28 +13:00
|
|
|
pam-file-contents = handleTest ./pam/pam-file-contents.nix {};
|
|
|
|
pam-oath-login = handleTest ./pam/pam-oath-login.nix {};
|
|
|
|
pam-u2f = handleTest ./pam/pam-u2f.nix {};
|
2022-03-13 17:20:23 +00:00
|
|
|
pam-ussh = handleTest ./pam/pam-ussh.nix {};
|
2023-05-14 21:30:01 +02:00
|
|
|
pam-zfs-key = handleTest ./pam/zfs-key.nix {};
|
2022-04-16 17:18:57 +12:00
|
|
|
pass-secret-service = handleTest ./pass-secret-service.nix {};
|
2022-11-23 18:53:04 +01:00
|
|
|
patroni = handleTestOn ["x86_64-linux"] ./patroni.nix {};
|
2021-05-30 17:32:41 +02:00
|
|
|
pantalaimon = handleTest ./matrix/pantalaimon.nix {};
|
2019-01-24 17:33:05 -05:00
|
|
|
pantheon = handleTest ./pantheon.nix {};
|
2025-01-08 22:09:41 +08:00
|
|
|
pantheon-wayland = handleTest ./pantheon-wayland.nix {};
|
2022-04-12 17:48:53 +02:00
|
|
|
paperless = handleTest ./paperless.nix {};
|
2021-06-02 18:19:37 +02:00
|
|
|
parsedmarc = handleTest ./parsedmarc {};
|
2024-12-15 12:22:02 +08:00
|
|
|
password-option-override-ordering = handleTest ./password-option-override-ordering.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
pdns-recursor = handleTest ./pdns-recursor.nix {};
|
2024-11-09 20:46:47 -07:00
|
|
|
pds = handleTest ./pds.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
peerflix = handleTest ./peerflix.nix {};
|
2022-12-01 17:32:15 +01:00
|
|
|
peering-manager = handleTest ./web-apps/peering-manager.nix {};
|
2021-05-31 14:23:06 +03:00
|
|
|
peertube = handleTestOn ["x86_64-linux"] ./web-apps/peertube.nix {};
|
2023-01-04 11:05:34 +13:00
|
|
|
peroxide = handleTest ./peroxide.nix {};
|
2021-07-02 14:22:12 +02:00
|
|
|
pgadmin4 = handleTest ./pgadmin4.nix {};
|
2023-07-22 12:49:23 +02:00
|
|
|
pgbouncer = handleTest ./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;
|
2018-11-11 20:30:07 +09:00
|
|
|
pgmanage = handleTest ./pgmanage.nix {};
|
2022-08-02 12:34:37 -07:00
|
|
|
phosh = handleTest ./phosh.nix {};
|
2024-02-05 23:51:17 -08:00
|
|
|
photonvision = handleTest ./photonvision.nix {};
|
2023-01-15 00:16:35 +01:00
|
|
|
photoprism = handleTest ./photoprism.nix {};
|
2020-03-30 22:07:05 +02:00
|
|
|
php = handleTest ./php {};
|
2021-11-25 21:38:19 +01:00
|
|
|
php81 = handleTest ./php { php = pkgs.php81; };
|
2022-11-13 21:14:38 +01:00
|
|
|
php82 = handleTest ./php { php = pkgs.php82; };
|
2023-06-26 20:51:23 +02:00
|
|
|
php83 = handleTest ./php { php = pkgs.php83; };
|
2024-07-05 16:36:46 +02:00
|
|
|
php84 = handleTest ./php { php = pkgs.php84; };
|
2022-06-29 04:17:38 +09:00
|
|
|
phylactery = handleTest ./web-apps/phylactery.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
pict-rs = handleTest ./pict-rs.nix {};
|
2024-02-09 20:06:25 +01:00
|
|
|
pingvin-share = handleTest ./pingvin-share.nix {} ;
|
2020-06-03 23:12:06 +02:00
|
|
|
pinnwand = handleTest ./pinnwand.nix {};
|
2023-11-14 23:09:23 +01:00
|
|
|
plantuml-server = handleTest ./plantuml-server.nix {};
|
2022-09-17 16:02:37 +03:00
|
|
|
plasma-bigscreen = handleTest ./plasma-bigscreen.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
plasma5 = handleTest ./plasma5.nix {};
|
2024-02-05 19:04:04 +03:00
|
|
|
plasma6 = handleTest ./plasma6.nix {};
|
2021-11-01 04:34:10 +08:00
|
|
|
plasma5-systemd-start = handleTest ./plasma5-systemd-start.nix {};
|
2021-05-21 23:15:23 +02:00
|
|
|
plausible = handleTest ./plausible.nix {};
|
2024-09-13 11:20:01 +02:00
|
|
|
playwright-python = handleTest ./playwright-python.nix {};
|
2022-09-30 00:12:29 +03:00
|
|
|
please = handleTest ./please.nix {};
|
2020-11-08 15:10:14 +01:00
|
|
|
pleroma = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./pleroma.nix {};
|
2020-11-13 15:00:34 +01:00
|
|
|
plikd = handleTest ./plikd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
plotinus = handleTest ./plotinus.nix {};
|
2021-04-14 17:15:41 +00:00
|
|
|
podgrab = handleTest ./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 {};
|
2022-06-17 20:04:54 +02:00
|
|
|
polaris = handleTest ./polaris.nix {};
|
2021-01-08 03:03:00 +00:00
|
|
|
pomerium = handleTestOn ["x86_64-linux"] ./pomerium.nix {};
|
2023-05-21 18:53:52 +02:00
|
|
|
portunus = handleTest ./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 {};
|
2021-05-18 23:34:03 -05:00
|
|
|
postfixadmin = handleTest ./postfixadmin.nix {};
|
2024-11-02 18:58:52 +01:00
|
|
|
postgresql = handleTest ./postgresql {};
|
2018-11-11 20:30:07 +09:00
|
|
|
powerdns = handleTest ./powerdns.nix {};
|
2021-12-17 10:33:40 +01:00
|
|
|
powerdns-admin = handleTest ./powerdns-admin.nix {};
|
2021-10-29 06:15:27 +02:00
|
|
|
power-profiles-daemon = handleTest ./power-profiles-daemon.nix {};
|
2019-10-14 21:26:54 -07:00
|
|
|
pppd = handleTest ./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;
|
2024-03-14 12:43:39 +01:00
|
|
|
pretix = runTest ./web-apps/pretix.nix;
|
2024-08-29 15:12:56 +02:00
|
|
|
printing-socket = handleTest ./printing.nix { socket = true; listenTcp = true; };
|
|
|
|
printing-service = handleTest ./printing.nix { socket = false; listenTcp = true; };
|
|
|
|
printing-socket-notcp = handleTest ./printing.nix { socket = true; listenTcp = false; };
|
|
|
|
printing-service-notcp = handleTest ./printing.nix { socket = false; listenTcp = false; };
|
2024-04-24 15:15:25 +02:00
|
|
|
private-gpt = handleTest ./private-gpt.nix {};
|
2024-09-29 22:57:42 +05:30
|
|
|
privatebin = runTest ./privatebin.nix;
|
2021-03-03 17:18:09 +01:00
|
|
|
privoxy = handleTest ./privoxy.nix {};
|
2024-06-02 00:06:14 +01:00
|
|
|
prometheus = handleTest ./prometheus {};
|
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 {};
|
2018-11-11 20:30:07 +09:00
|
|
|
proxy = handleTest ./proxy.nix {};
|
2021-10-10 08:54:22 -07:00
|
|
|
prowlarr = handleTest ./prowlarr.nix {};
|
2020-07-29 19:00:33 +02:00
|
|
|
pt2-clone = handleTest ./pt2-clone.nix {};
|
2022-06-27 00:20:04 +02:00
|
|
|
pykms = handleTest ./pykms.nix {};
|
2021-12-01 11:06:18 +01:00
|
|
|
public-inbox = handleTest ./public-inbox.nix {};
|
2023-04-07 09:34:25 +03:00
|
|
|
pufferpanel = handleTest ./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; };
|
2023-06-16 08:19:47 +02:00
|
|
|
qownnotes = handleTest ./qownnotes.nix {};
|
2024-05-31 16:25:21 +02:00
|
|
|
qtile = handleTestOn ["x86_64-linux" "aarch64-linux"] ./qtile/default.nix {};
|
2023-08-28 17:59:16 +02:00
|
|
|
quake3 = handleTest ./quake3.nix {};
|
2023-11-01 19:48:51 +01:00
|
|
|
quicktun = handleTest ./quicktun.nix {};
|
2024-06-04 22:39:48 +01:00
|
|
|
quickwit = handleTest ./quickwit.nix {};
|
2023-08-28 17:59:16 +02:00
|
|
|
quorum = handleTest ./quorum.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
rabbitmq = handleTest ./rabbitmq.nix {};
|
2019-01-24 23:09:21 +01:00
|
|
|
radarr = handleTest ./radarr.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
radicale = handleTest ./radicale.nix {};
|
2024-05-25 02:23:48 +02:00
|
|
|
radicle = runTest ./radicle.nix;
|
2023-08-08 11:53:51 +02:00
|
|
|
ragnarwm = handleTest ./ragnarwm.nix {};
|
2021-02-02 01:39:50 +01:00
|
|
|
rasdaemon = handleTest ./rasdaemon.nix {};
|
2024-07-28 01:25:01 +03:00
|
|
|
rathole = handleTest ./rathole.nix {};
|
2023-03-12 20:54:23 +01:00
|
|
|
readarr = handleTest ./readarr.nix {};
|
2024-01-28 12:56:32 +08:00
|
|
|
realm = handleTest ./realm.nix {};
|
2025-01-02 21:09:06 +01:00
|
|
|
readeck = runTest ./readeck.nix;
|
2019-08-31 20:17:33 +02:00
|
|
|
redis = handleTest ./redis.nix {};
|
2024-04-22 07:31:53 +01:00
|
|
|
redlib = handleTest ./redlib.nix {};
|
2024-10-13 03:32:49 +02:00
|
|
|
redmine = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./redmine.nix {};
|
2024-06-08 17:56:52 +02:00
|
|
|
renovate = handleTest ./renovate.nix {};
|
2023-12-16 19:02:17 +01:00
|
|
|
replace-dependencies = handleTest ./replace-dependencies {};
|
2021-09-08 21:02:28 +02:00
|
|
|
restartByActivationScript = handleTest ./restart-by-activation-script.nix {};
|
2024-03-16 07:27:14 +01:00
|
|
|
restic-rest-server = handleTest ./restic-rest-server.nix {};
|
2020-01-30 16:31:52 -05:00
|
|
|
restic = handleTest ./restic.nix {};
|
2022-02-05 00:50:11 +01:00
|
|
|
retroarch = handleTest ./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;
|
2020-08-30 18:31:54 +02:00
|
|
|
robustirc-bridge = handleTest ./robustirc-bridge.nix {};
|
2018-11-28 17:33:26 +01:00
|
|
|
roundcube = handleTest ./roundcube.nix {};
|
2025-02-07 09:21:45 +01:00
|
|
|
routinator = handleTest ./routinator.nix {};
|
2023-10-23 19:29:30 +02:00
|
|
|
rosenpass = handleTest ./rosenpass.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 {};
|
2023-10-18 11:47:00 +02:00
|
|
|
rspamd-trainer = handleTest ./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 {};
|
2022-01-23 12:11:05 +01:00
|
|
|
rstudio-server = handleTest ./rstudio-server.nix {};
|
|
|
|
rsyncd = handleTest ./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;
|
2024-06-23 20:38:41 -03:00
|
|
|
rtorrent = handleTest ./rtorrent.nix {};
|
2024-12-10 14:53:02 +01:00
|
|
|
rustls-libssl = handleTest ./rustls-libssl.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
rxe = handleTest ./rxe.nix {};
|
2021-09-21 13:38:22 +02:00
|
|
|
sabnzbd = handleTest ./sabnzbd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
samba = handleTest ./samba.nix {};
|
2020-11-23 17:13:22 +03:00
|
|
|
samba-wsdd = handleTest ./samba-wsdd.nix {};
|
2024-01-01 12:00:00 +00:00
|
|
|
sane = handleTest ./sane.nix {};
|
2019-10-26 23:37:30 -04:00
|
|
|
sanoid = handleTest ./sanoid.nix {};
|
2024-10-03 11:39:24 +02:00
|
|
|
saunafs = handleTest ./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 {};
|
2024-02-19 09:47:18 +00:00
|
|
|
scrutiny = handleTest ./scrutiny.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
sddm = handleTest ./sddm.nix {};
|
2024-12-14 06:44:37 -04:00
|
|
|
sdl3 = handleTest ./sdl3.nix { };
|
2021-11-07 09:05:36 +01:00
|
|
|
seafile = handleTest ./seafile.nix {};
|
2024-06-19 07:04:30 +02:00
|
|
|
searx = runTest ./searx.nix;
|
2023-08-25 10:59:57 +05:30
|
|
|
seatd = handleTest ./seatd.nix {};
|
2024-10-26 01:50:55 +08:00
|
|
|
send = runTest ./send.nix;
|
2020-02-28 12:17:01 +01:00
|
|
|
service-runner = handleTest ./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;
|
2022-03-20 22:39:04 +01:00
|
|
|
sfxr-qt = handleTest ./sfxr-qt.nix {};
|
2023-10-06 21:36:48 +11:00
|
|
|
sgt-puzzles = handleTest ./sgt-puzzles.nix {};
|
2020-12-23 13:28:30 -05:00
|
|
|
shadow = handleTest ./shadow.nix {};
|
2020-09-09 10:15:59 +12:00
|
|
|
shadowsocks = handleTest ./shadowsocks {};
|
2020-08-09 15:20:17 +02:00
|
|
|
shattered-pixel-dungeon = handleTest ./shattered-pixel-dungeon.nix {};
|
2019-11-08 18:17:08 +01:00
|
|
|
shiori = handleTest ./shiori.nix {};
|
2019-05-23 00:50:51 +02:00
|
|
|
signal-desktop = handleTest ./signal-desktop.nix {};
|
2024-03-16 17:12:16 +01:00
|
|
|
silverbullet = handleTest ./silverbullet.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
simple = handleTest ./simple.nix {};
|
2023-06-27 12:58:10 +08:00
|
|
|
sing-box = handleTest ./sing-box.nix {};
|
2023-11-04 21:43:15 -04:00
|
|
|
slimserver = handleTest ./slimserver.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
slurm = handleTest ./slurm.nix {};
|
2023-12-02 16:05:57 +02:00
|
|
|
snmpd = handleTest ./snmpd.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
smokeping = handleTest ./smokeping.nix {};
|
2020-07-28 14:47:36 +02:00
|
|
|
snapcast = handleTest ./snapcast.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
snapper = handleTest ./snapper.nix {};
|
2023-04-26 17:46:15 +02:00
|
|
|
snipe-it = runTest ./web-apps/snipe-it.nix;
|
2022-01-23 12:11:05 +01:00
|
|
|
soapui = handleTest ./soapui.nix {};
|
2023-07-08 01:44:42 +02:00
|
|
|
soft-serve = handleTest ./soft-serve.nix {};
|
2020-05-12 18:32:39 +02:00
|
|
|
sogo = handleTest ./sogo.nix {};
|
2023-10-01 17:56:37 -07:00
|
|
|
soju = handleTest ./soju.nix {};
|
2021-05-20 22:03:39 +02:00
|
|
|
solanum = handleTest ./solanum.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
sonarr = handleTest ./sonarr.nix {};
|
2023-11-10 14:52:15 +01:00
|
|
|
sonic-server = handleTest ./sonic-server.nix {};
|
2023-12-25 03:49:11 +01:00
|
|
|
sourcehut = handleTest ./sourcehut {};
|
2019-05-24 21:17:51 +02:00
|
|
|
spacecookie = handleTest ./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;
|
2022-11-13 20:13:15 +01:00
|
|
|
sqlite3-to-mysql = handleTest ./sqlite3-to-mysql.nix {};
|
2025-01-27 12:10:54 +01:00
|
|
|
squid = handleTest ./squid.nix {};
|
2020-01-18 12:00:00 +00:00
|
|
|
sslh = handleTest ./sslh.nix {};
|
2023-11-08 20:47:33 +00:00
|
|
|
ssh-agent-auth = handleTest ./ssh-agent-auth.nix {};
|
2023-10-16 21:31:39 +13:00
|
|
|
ssh-audit = handleTest ./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 {};
|
2023-09-02 20:27:11 +02:00
|
|
|
stalwart-mail = handleTest ./stalwart-mail.nix {};
|
2023-04-16 19:24:06 -04:00
|
|
|
stargazer = runTest ./web-servers/stargazer.nix;
|
2021-12-24 11:24:29 +00:00
|
|
|
starship = handleTest ./starship.nix {};
|
2024-12-24 15:27:25 -08:00
|
|
|
stash = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./stash.nix {};
|
2023-07-01 12:17:39 -04:00
|
|
|
static-web-server = handleTest ./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 {};
|
2018-11-11 20:30:07 +09:00
|
|
|
strongswan-swanctl = handleTest ./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 {};
|
2018-11-11 20:30:07 +09:00
|
|
|
sudo = handleTest ./sudo.nix {};
|
2023-09-07 15:53:18 +00:00
|
|
|
sudo-rs = handleTest ./sudo-rs.nix {};
|
2024-03-30 20:07:35 -05:00
|
|
|
sunshine = handleTest ./sunshine.nix {};
|
2024-05-22 14:45:16 +02:00
|
|
|
suricata = handleTest ./suricata.nix {};
|
2024-01-18 22:11:16 +01:00
|
|
|
suwayomi-server = handleTest ./suwayomi-server.nix {};
|
2022-10-04 11:08:46 +08:00
|
|
|
swap-file-btrfs = handleTest ./swap-file-btrfs.nix {};
|
2022-06-22 04:11:23 +02:00
|
|
|
swap-partition = handleTest ./swap-partition.nix {};
|
2023-05-03 16:11:45 -04:00
|
|
|
swap-random-encryption = handleTest ./swap-random-encryption.nix {};
|
2024-10-27 01:22:53 +05:30
|
|
|
swapspace = handleTestOn ["aarch64-linux" "x86_64-linux"] ./swapspace.nix {};
|
2021-05-27 20:37:24 +02:00
|
|
|
sway = handleTest ./sway.nix {};
|
2024-04-29 15:47:59 -04:00
|
|
|
swayfx = handleTest ./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;
|
|
|
|
};
|
2024-08-10 15:17:06 +01:00
|
|
|
sx = handleTest ./sx.nix {};
|
2019-07-06 20:56:30 +02:00
|
|
|
sympa = handleTest ./sympa.nix {};
|
2020-07-23 00:13:26 -07:00
|
|
|
syncthing = handleTest ./syncthing.nix {};
|
2023-05-23 16:58:38 +03:00
|
|
|
syncthing-no-settings = handleTest ./syncthing-no-settings.nix {};
|
2019-04-21 23:05:07 +02:00
|
|
|
syncthing-init = handleTest ./syncthing-init.nix {};
|
2023-10-14 21:32:24 +03:00
|
|
|
syncthing-many-devices = handleTest ./syncthing-many-devices.nix {};
|
2018-11-17 15:02:00 +01:00
|
|
|
syncthing-relay = handleTest ./syncthing-relay.nix {};
|
2023-11-25 21:31:09 +01:00
|
|
|
sysinit-reactivation = runTest ./sysinit-reactivation.nix;
|
2018-11-11 20:30:07 +09:00
|
|
|
systemd = handleTest ./systemd.nix {};
|
2019-11-25 00:03:55 +01:00
|
|
|
systemd-analyze = handleTest ./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 {};
|
2022-08-21 12:22:16 +02:00
|
|
|
systemd-bpf = handleTest ./systemd-bpf.nix {};
|
2024-04-24 15:04:07 +02:00
|
|
|
systemd-confinement = handleTest ./systemd-confinement {};
|
2022-08-01 09:44:29 -07:00
|
|
|
systemd-coredump = handleTest ./systemd-coredump.nix {};
|
2021-10-04 12:54:13 +02:00
|
|
|
systemd-cryptenroll = handleTest ./systemd-cryptenroll.nix {};
|
2023-02-20 01:07:31 +01:00
|
|
|
systemd-credentials-tpm2 = handleTest ./systemd-credentials-tpm2.nix {};
|
2022-01-09 08:46:55 +01:00
|
|
|
systemd-escaping = handleTest ./systemd-escaping.nix {};
|
2023-08-25 13:11:20 -04:00
|
|
|
systemd-initrd-bridge = handleTest ./systemd-initrd-bridge.nix {};
|
2022-04-17 13:55:48 +01:00
|
|
|
systemd-initrd-btrfs-raid = handleTest ./systemd-initrd-btrfs-raid.nix {};
|
2022-10-04 01:10:03 +08:00
|
|
|
systemd-initrd-luks-fido2 = handleTest ./systemd-initrd-luks-fido2.nix {};
|
2022-04-13 22:27:58 +01:00
|
|
|
systemd-initrd-luks-keyfile = handleTest ./systemd-initrd-luks-keyfile.nix {};
|
2023-03-22 09:17:23 -05:00
|
|
|
systemd-initrd-luks-empty-passphrase = handleTest ./initrd-luks-empty-passphrase.nix { systemdStage1 = true; };
|
2022-04-13 19:45:29 +01:00
|
|
|
systemd-initrd-luks-password = handleTest ./systemd-initrd-luks-password.nix {};
|
2022-09-23 15:47:05 -06:00
|
|
|
systemd-initrd-luks-tpm2 = handleTest ./systemd-initrd-luks-tpm2.nix {};
|
2023-02-27 00:30:25 +11:00
|
|
|
systemd-initrd-luks-unl0kr = handleTest ./systemd-initrd-luks-unl0kr.nix {};
|
2022-10-05 08:37:51 +08:00
|
|
|
systemd-initrd-modprobe = handleTest ./systemd-initrd-modprobe.nix {};
|
2022-04-15 11:23:02 +01:00
|
|
|
systemd-initrd-shutdown = handleTest ./systemd-shutdown.nix { systemdStage1 = true; };
|
2022-03-20 16:11:32 -04:00
|
|
|
systemd-initrd-simple = handleTest ./systemd-initrd-simple.nix {};
|
2022-04-15 16:28:41 +01:00
|
|
|
systemd-initrd-swraid = handleTest ./systemd-initrd-swraid.nix {};
|
2023-02-08 15:24:10 -05:00
|
|
|
systemd-initrd-vconsole = handleTest ./systemd-initrd-vconsole.nix {};
|
2022-06-29 01:01:59 -04:00
|
|
|
systemd-initrd-networkd = handleTest ./systemd-initrd-networkd.nix {};
|
2022-08-03 06:36:11 -04:00
|
|
|
systemd-initrd-networkd-ssh = handleTest ./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; };
|
2023-08-24 23:57:46 -04:00
|
|
|
systemd-initrd-vlan = handleTest ./systemd-initrd-vlan.nix {};
|
2020-11-01 18:48:40 +01:00
|
|
|
systemd-journal = handleTest ./systemd-journal.nix {};
|
2022-09-01 14:54:10 +02:00
|
|
|
systemd-journal-gateway = handleTest ./systemd-journal-gateway.nix {};
|
2022-09-01 14:55:30 +02:00
|
|
|
systemd-journal-upload = handleTest ./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;
|
2022-02-17 22:07:05 +01:00
|
|
|
systemd-machinectl = handleTest ./systemd-machinectl.nix {};
|
2020-02-29 19:34:48 +01:00
|
|
|
systemd-networkd = handleTest ./systemd-networkd.nix {};
|
2024-04-11 00:56:18 -07:00
|
|
|
systemd-networkd-bridge = handleTest ./systemd-networkd-bridge.nix {};
|
2019-11-16 22:13:51 +11:00
|
|
|
systemd-networkd-dhcpserver = handleTest ./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 {};
|
2020-11-29 20:00:38 -03:00
|
|
|
systemd-networkd-vrf = handleTest ./systemd-networkd-vrf.nix {};
|
2022-10-05 00:19:38 +08:00
|
|
|
systemd-no-tainted = handleTest ./systemd-no-tainted.nix {};
|
2019-11-02 19:55:41 +01:00
|
|
|
systemd-nspawn = handleTest ./systemd-nspawn.nix {};
|
2023-06-07 11:34:33 +02:00
|
|
|
systemd-nspawn-configfile = handleTest ./systemd-nspawn-configfile.nix {};
|
2022-04-21 19:54:50 +02:00
|
|
|
systemd-oomd = handleTest ./systemd-oomd.nix {};
|
2022-09-29 12:57:18 +02:00
|
|
|
systemd-portabled = handleTest ./systemd-portabled.nix {};
|
2023-01-19 20:04:29 +01:00
|
|
|
systemd-repart = handleTest ./systemd-repart.nix {};
|
2024-05-20 19:37:01 -04:00
|
|
|
systemd-resolved = handleTest ./systemd-resolved.nix {};
|
2022-04-15 11:23:02 +01:00
|
|
|
systemd-shutdown = handleTest ./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;
|
2020-11-29 20:00:38 -03:00
|
|
|
systemd-timesyncd = handleTest ./systemd-timesyncd.nix {};
|
2023-06-22 15:17:42 +03:00
|
|
|
systemd-timesyncd-nscd-dnssec = handleTest ./systemd-timesyncd-nscd-dnssec.nix {};
|
2024-03-21 19:51:05 -04:00
|
|
|
systemd-user-linger = handleTest ./systemd-user-linger.nix {};
|
2022-12-23 21:22:49 +01:00
|
|
|
systemd-user-tmpfiles-rules = handleTest ./systemd-user-tmpfiles-rules.nix {};
|
2021-08-11 20:28:30 +02:00
|
|
|
systemd-misc = handleTest ./systemd-misc.nix {};
|
2022-12-07 18:31:05 -06:00
|
|
|
systemd-userdbd = handleTest ./systemd-userdbd.nix {};
|
2022-12-08 02:49:12 -06:00
|
|
|
systemd-homed = handleTest ./systemd-homed.nix {};
|
2024-01-09 19:38:02 +01:00
|
|
|
systemtap = handleTest ./systemtap.nix {};
|
2024-07-23 18:20:41 +01:00
|
|
|
taler = handleTest ./taler {};
|
2022-09-17 16:36:39 +02:00
|
|
|
tandoor-recipes = handleTest ./tandoor-recipes.nix {};
|
2024-06-19 23:55:33 +12:00
|
|
|
tandoor-recipes-script-name = handleTest ./tandoor-recipes-script-name.nix {};
|
2023-10-16 13:10:15 +02:00
|
|
|
tang = handleTest ./tang.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
taskserver = handleTest ./taskserver.nix {};
|
2024-06-10 20:15:18 +03:00
|
|
|
taskchampion-sync-server = handleTest ./taskchampion-sync-server.nix {};
|
2022-10-12 21:16:02 +02:00
|
|
|
tayga = handleTest ./tayga.nix {};
|
2024-04-04 08:35:07 +02:00
|
|
|
technitium-dns-server = handleTest ./technitium-dns-server.nix {};
|
2022-01-23 12:11:05 +01:00
|
|
|
teeworlds = handleTest ./teeworlds.nix {};
|
2019-01-21 11:30:11 +00:00
|
|
|
telegraf = handleTest ./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 {};
|
2019-04-29 21:46:00 +01:00
|
|
|
tiddlywiki = handleTest ./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;
|
2019-12-02 23:28:53 +01:00
|
|
|
timezone = handleTest ./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 {};
|
2019-05-16 23:42:02 +02:00
|
|
|
tinydns = handleTest ./tinydns.nix {};
|
2023-05-05 21:02:11 +02:00
|
|
|
tinyproxy = handleTest ./tinyproxy.nix {};
|
2021-12-28 21:32:26 +01:00
|
|
|
tinywl = handleTest ./tinywl.nix {};
|
2022-10-05 18:34:30 +02:00
|
|
|
tmate-ssh-server = handleTest ./tmate-ssh-server.nix { };
|
2022-03-13 14:31:43 +01:00
|
|
|
tomcat = handleTest ./tomcat.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
tor = handleTest ./tor.nix {};
|
2024-12-11 19:09:20 -08:00
|
|
|
tpm-ek = handleTest ./tpm-ek {};
|
2022-09-24 17:43:38 +10:00
|
|
|
traefik = handleTestOn ["aarch64-linux" "x86_64-linux"] ./traefik.nix {};
|
2021-04-10 01:48:51 +09:00
|
|
|
trafficserver = handleTest ./trafficserver.nix {};
|
2024-01-25 12:23:53 +08:00
|
|
|
transfer-sh = handleTest ./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 {};
|
2019-08-16 17:00:07 +02:00
|
|
|
trezord = handleTest ./trezord.nix {};
|
2019-11-01 11:03:23 +01:00
|
|
|
trickster = handleTest ./trickster.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
trilium-server = handleTestOn ["x86_64-linux"] ./trilium-server.nix {};
|
2021-12-18 09:21:57 +01:00
|
|
|
tsm-client-gui = handleTest ./tsm-client-gui.nix {};
|
2024-01-20 17:33:00 +01:00
|
|
|
ttyd = handleTest ./web-servers/ttyd.nix {};
|
2024-11-16 23:27:27 +01:00
|
|
|
tt-rss = handleTest ./web-apps/tt-rss.nix {};
|
2021-06-24 23:34:03 +02:00
|
|
|
txredisapi = handleTest ./txredisapi.nix {};
|
2020-03-24 23:45:49 +01:00
|
|
|
tuptime = handleTest ./tuptime.nix {};
|
2021-03-14 06:13:41 +01:00
|
|
|
turbovnc-headless-server = handleTest ./turbovnc-headless-server.nix {};
|
2024-09-11 10:51:45 +08:00
|
|
|
turn-rs = handleTest ./turn-rs.nix {};
|
2021-07-23 08:02:20 -06:00
|
|
|
tuxguitar = handleTest ./tuxguitar.nix {};
|
2023-07-07 19:50:29 +03:00
|
|
|
twingate = runTest ./twingate.nix;
|
2023-07-19 00:29:30 +02:00
|
|
|
typesense = handleTest ./typesense.nix {};
|
2021-06-13 22:00:25 +02:00
|
|
|
ucarp = handleTest ./ucarp.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
udisks2 = handleTest ./udisks2.nix {};
|
2023-09-18 00:09:25 +02:00
|
|
|
ulogd = handleTest ./ulogd/ulogd.nix {};
|
2020-11-29 20:00:38 -03:00
|
|
|
unbound = handleTest ./unbound.nix {};
|
2021-12-17 15:55:13 -08:00
|
|
|
unifi = handleTest ./unifi.nix {};
|
2020-04-16 23:08:00 +03:00
|
|
|
unit-php = handleTest ./web-servers/unit-php.nix {};
|
2024-09-08 19:45:16 +02:00
|
|
|
unit-perl = handleTest ./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; };
|
2022-03-17 17:57:23 +01:00
|
|
|
uptermd = handleTest ./uptermd.nix {};
|
2022-09-23 07:04:23 +02:00
|
|
|
uptime-kuma = handleTest ./uptime-kuma.nix {};
|
2024-02-04 19:59:22 +01:00
|
|
|
urn-timer = handleTest ./urn-timer.nix {};
|
2021-01-16 23:15:52 +01:00
|
|
|
usbguard = handleTest ./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;
|
2021-02-15 14:40:54 -08:00
|
|
|
user-activation-scripts = handleTest ./user-activation-scripts.nix {};
|
2023-08-02 13:51:06 +02:00
|
|
|
user-expiry = runTest ./user-expiry.nix;
|
2022-04-10 21:06:19 +02:00
|
|
|
user-home-mode = handleTest ./user-home-mode.nix {};
|
2024-03-21 03:30:37 +00:00
|
|
|
ustreamer = handleTest ./ustreamer.nix {};
|
2019-05-27 23:03:22 +02:00
|
|
|
uwsgi = handleTest ./uwsgi.nix {};
|
2020-06-12 16:12:51 +08:00
|
|
|
v2ray = handleTest ./v2ray.nix {};
|
2022-09-27 21:22:21 +02:00
|
|
|
varnish60 = handleTest ./varnish.nix { package = pkgs.varnish60; };
|
2024-05-03 21:03:01 +02:00
|
|
|
varnish75 = handleTest ./varnish.nix { package = pkgs.varnish75; };
|
2025-01-14 16:56:17 +01:00
|
|
|
varnish76 = handleTest ./varnish.nix { package = pkgs.varnish76; };
|
2018-11-11 20:30:07 +09:00
|
|
|
vault = handleTest ./vault.nix {};
|
2023-04-25 15:58:30 +02:00
|
|
|
vault-agent = handleTest ./vault-agent.nix {};
|
2022-07-05 10:54:11 +02:00
|
|
|
vault-dev = handleTest ./vault-dev.nix {};
|
2021-01-04 17:54:03 +01:00
|
|
|
vault-postgresql = handleTest ./vault-postgresql.nix {};
|
2023-07-27 21:13:55 +02:00
|
|
|
vaultwarden = discoverTests (import ./vaultwarden.nix);
|
2024-05-21 17:13:35 +01:00
|
|
|
vector = handleTest ./vector {};
|
2021-11-21 18:09:17 +01:00
|
|
|
vengi-tools = handleTest ./vengi-tools.nix {};
|
2024-11-22 09:53:13 +08:00
|
|
|
victoriametrics = handleTest ./victoriametrics {};
|
2021-06-26 14:26:17 +02:00
|
|
|
vikunja = handleTest ./vikunja.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.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);
|
2022-03-01 04:03:47 +01:00
|
|
|
vsftpd = handleTest ./vsftpd.nix {};
|
2024-12-06 23:32:16 +08:00
|
|
|
waagent = handleTest ./waagent.nix {};
|
2024-10-22 12:28:04 +03:00
|
|
|
wakapi = handleTest ./wakapi.nix {};
|
2022-11-24 20:46:05 +01:00
|
|
|
warzone2100 = handleTest ./warzone2100.nix {};
|
2020-06-18 14:19:13 +02:00
|
|
|
wasabibackend = handleTest ./wasabibackend.nix {};
|
2024-04-01 02:55:15 +02:00
|
|
|
wastebin = handleTest ./wastebin.nix {};
|
2024-01-19 23:38:27 +01:00
|
|
|
watchdogd = handleTest ./watchdogd.nix {};
|
2020-03-22 12:49:51 +01:00
|
|
|
webhook = runTest ./webhook.nix;
|
2024-07-22 17:11:49 +02:00
|
|
|
weblate = handleTest ./web-apps/weblate.nix {};
|
2024-05-25 22:32:17 +03:00
|
|
|
whisparr = handleTest ./whisparr.nix {};
|
2024-10-16 02:16:15 +02:00
|
|
|
whoogle-search = handleTest ./whoogle-search.nix {};
|
2021-03-18 12:33:40 +01:00
|
|
|
wiki-js = handleTest ./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 {};
|
2024-03-09 17:20:01 +01:00
|
|
|
wg-access-server = handleTest ./wg-access-server.nix {};
|
2021-04-24 21:02:15 +00:00
|
|
|
without-nix = handleTest ./without-nix.nix {};
|
2021-01-27 23:44:27 +09:00
|
|
|
wmderland = handleTest ./wmderland.nix {};
|
2024-03-16 14:26:22 +05:30
|
|
|
workout-tracker = handleTest ./workout-tracker.nix {};
|
2024-08-22 19:27:20 +02:00
|
|
|
wpa_supplicant = import ./wpa_supplicant.nix { inherit pkgs runTest; };
|
2018-11-11 20:30:07 +09:00
|
|
|
wordpress = handleTest ./wordpress.nix {};
|
2022-11-05 12:38:11 +01:00
|
|
|
wrappers = handleTest ./wrappers.nix {};
|
2022-06-25 22:08:43 -07:00
|
|
|
writefreely = handleTest ./web-apps/writefreely.nix {};
|
2024-06-15 16:32:52 +02:00
|
|
|
wstunnel = runTest ./wstunnel.nix;
|
2019-12-14 01:17:49 +01:00
|
|
|
xandikos = handleTest ./xandikos.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
xautolock = handleTest ./xautolock.nix {};
|
|
|
|
xfce = handleTest ./xfce.nix {};
|
2024-10-21 22:15:30 +08:00
|
|
|
xfce-wayland = handleTest ./xfce-wayland.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
xmonad = handleTest ./xmonad.nix {};
|
2021-06-18 21:10:26 +08:00
|
|
|
xmonad-xdg-autostart = handleTest ./xmonad-xdg-autostart.nix {};
|
2022-09-20 19:39:13 -04:00
|
|
|
xpadneo = handleTest ./xpadneo.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
xrdp = handleTest ./xrdp.nix {};
|
2024-01-08 16:19:30 -03:00
|
|
|
xrdp-with-audio-pulseaudio = handleTest ./xrdp-with-audio-pulseaudio.nix {};
|
2023-11-23 12:31:50 -08:00
|
|
|
xscreensaver = handleTest ./xscreensaver.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
xss-lock = handleTest ./xss-lock.nix {};
|
2020-11-16 22:13:13 -05:00
|
|
|
xterm = handleTest ./xterm.nix {};
|
2022-01-01 22:16:13 +01:00
|
|
|
xxh = handleTest ./xxh.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
yabar = handleTest ./yabar.nix {};
|
2024-05-08 17:58:21 +02:00
|
|
|
ydotool = handleTest ./ydotool.nix {};
|
2019-06-27 08:56:10 -07:00
|
|
|
yggdrasil = handleTest ./yggdrasil.nix {};
|
2024-04-13 10:59:11 +02:00
|
|
|
your_spotify = handleTest ./your_spotify.nix {};
|
2022-02-16 00:49:51 -05:00
|
|
|
zammad = handleTest ./zammad.nix {};
|
2024-12-27 19:26:01 +01:00
|
|
|
zenohd = handleTest ./zenohd.nix {};
|
2022-06-10 14:54:16 +02:00
|
|
|
zeronet-conservancy = handleTest ./zeronet-conservancy.nix {};
|
2020-02-03 18:33:26 +01:00
|
|
|
zfs = handleTest ./zfs.nix {};
|
2020-08-03 12:43:13 +02:00
|
|
|
zigbee2mqtt = handleTest ./zigbee2mqtt.nix {};
|
2025-01-04 16:33:37 +01:00
|
|
|
zipline = handleTest ./zipline.nix {};
|
2020-04-11 13:28:52 -04:00
|
|
|
zoneminder = handleTest ./zoneminder.nix {};
|
2018-11-11 20:30:07 +09:00
|
|
|
zookeeper = handleTest ./zookeeper.nix {};
|
2023-01-18 15:40:42 +01:00
|
|
|
zram-generator = handleTest ./zram-generator.nix {};
|
2022-03-29 14:44:07 -04:00
|
|
|
zrepl = handleTest ./zrepl.nix {};
|
2020-04-11 13:28:52 -04:00
|
|
|
zsh-history = handleTest ./zsh-history.nix {};
|
2023-05-13 22:42:00 +01:00
|
|
|
zwave-js = handleTest ./zwave-js.nix {};
|
2024-08-21 22:09:46 -04:00
|
|
|
zwave-js-ui = handleTest ./zwave-js-ui.nix {};
|
2022-06-06 19:24:30 +02:00
|
|
|
}
|