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;