From 02ec5e6151b98df84eb4fb1aa53b5bc70ef7aaa2 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 11 Jan 2022 20:58:10 +0100 Subject: [PATCH] meta: add dream2nix input --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 7a9de58..cdc51c6 100644 --- a/flake.nix +++ b/flake.nix @@ -20,6 +20,9 @@ nar-serve.url = "github:numtide/nar-serve/v0.5.0"; nar-serve.inputs.nixpkgs.follows = "nixpkgs"; + + dream2nix.url = "github:nix-community/dream2nix"; + dream2nix.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, home-manager, ... }@inputs: let @@ -65,6 +68,10 @@ inherit pkgs inputs; }; + apps.${system} = { + dream2nix = inputs.dream2nix.defaultApp.${system}; + }; + defaultApp.${system} = { type = "app"; program = self.packages.${system}.flake-installer.outPath;