From 58e22cabd9f983bce49aef2771b057208cfedc6a Mon Sep 17 00:00:00 2001 From: Jon Seager Date: Mon, 15 Jan 2024 08:59:17 +0000 Subject: [PATCH] lxd-ui: run nixosTests.lxd.ui by default --- pkgs/tools/admin/lxd/ui.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/admin/lxd/ui.nix b/pkgs/tools/admin/lxd/ui.nix index 71b0fb9d06219..d2110d4c4d7cf 100644 --- a/pkgs/tools/admin/lxd/ui.nix +++ b/pkgs/tools/admin/lxd/ui.nix @@ -5,6 +5,7 @@ , nodejs , prefetch-yarn-deps , yarn +, nixosTests }: stdenv.mkDerivation rec { @@ -57,6 +58,8 @@ stdenv.mkDerivation rec { runHook postInstall ''; + passthru.tests.default = nixosTests.lxd.ui; + meta = { description = "Web user interface for LXD"; homepage = "https://github.com/canonical/lxd-ui";