homepage-dashboard: enable nix-update-script

This commit is contained in:
Jon Seager 2024-03-11 08:28:07 +00:00 committed by Bjørn Forsman
parent e16d9a1782
commit c58f136b53

View File

@ -10,6 +10,7 @@
, makeBinaryWrapper
, nixosTests
, enableLocalIcons ? false
, nix-update-script
}:
let
dashboardIcons = fetchFromGitHub {
@ -99,8 +100,11 @@ buildNpmPackage rec {
doDist = false;
passthru.tests = {
inherit (nixosTests) homepage-dashboard;
passthru = {
tests = {
inherit (nixosTests) homepage-dashboard;
};
updateScript = nix-update-script { };
};
meta = {