about summary refs log tree commit diff
path: root/nixos/tests/installed-tests/appstream.nix
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-02-25 19:26:15 +0800
committerBobby Rong <rjl931189261@126.com>2022-03-02 11:28:29 +0800
commitc942cd7b2eac6e2851b7b603f46e1347bf681e10 (patch)
tree5ce80ef5f3ae4b91fdb91189c5dfe27d1cf305ba /nixos/tests/installed-tests/appstream.nix
parent33ed5aeef7c05e994760fa5882362f3d3ca31afb (diff)
nixosTests.installed-tests.appstream: init
Diffstat (limited to 'nixos/tests/installed-tests/appstream.nix')
-rw-r--r--nixos/tests/installed-tests/appstream.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nixos/tests/installed-tests/appstream.nix b/nixos/tests/installed-tests/appstream.nix
new file mode 100644
index 0000000000000..f71a095d4452f
--- /dev/null
+++ b/nixos/tests/installed-tests/appstream.nix
@@ -0,0 +1,9 @@
+{ pkgs, makeInstalledTest, ... }:
+
+makeInstalledTest {
+  tested = pkgs.appstream;
+
+  testConfig = {
+    appstream.enable = true;
+  };
+}