25 lines
848 B
Nix
25 lines
848 B
Nix
{
|
|
description = "unexplrd's flake for bwrapped (and maybe other) packages";
|
|
|
|
# Add all your dependencies here
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
|
|
blueprint.url = "github:numtide/blueprint";
|
|
blueprint.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
nix-bwrapper.url = "github:Naxdy/nix-bwrapper";
|
|
nix-bwrapper.inputs.nixpkgs.follows = "nixpkgs";
|
|
nix-bwrapper.inputs.nuschtosSearch.inputs.nixpkgs.follows = "nixpkgs";
|
|
nix-bwrapper.inputs.treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
helium.url = "github:vikingnope/helium-browser-nix-flake";
|
|
helium.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
zen-browser.url = "github:youwen5/zen-browser-flake";
|
|
zen-browser.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
# Load the blueprint
|
|
outputs = inputs: inputs.blueprint {inherit inputs;};
|
|
}
|