From eaafc67ba0134d8ddc3b2d261d9a9ba99045cf32 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 29 Nov 2022 16:50:56 +0100 Subject: [PATCH] packages: update to new dream2nix interface --- packages/projects.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/projects.nix b/packages/projects.nix index bb3b5e2..3750edb 100644 --- a/packages/projects.nix +++ b/packages/projects.nix @@ -36,7 +36,7 @@ cinny = pkgs.callPackage ./web-apps/cinny { inherit pins; }; excalidraw = let - dream = dream2nix.makeOutputs { + dream = dream2nix.dream2nix-interface.makeOutputs { source = pins.excalidraw; }; inherit (dream.packages) excalidraw; @@ -44,7 +44,7 @@ excalidraw // { webroot = "${excalidraw}/${excalidraw.webPath}"; }; uptime-kuma = let - dream = dream2nix.makeOutputs { + dream = dream2nix.dream2nix-interface.makeOutputs { source = pins.uptime-kuma; }; inherit (dream.packages) uptime-kuma;