This commit is contained in:
2025-12-31 20:05:41 +02:00
commit 867b6f3017
13 changed files with 882 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
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";
zen-browser.url = "github:youwen5/zen-browser-flake";
zen-browser.inputs.nixpkgs.follows = "nixpkgs";
};
# Load the blueprint
outputs = inputs: inputs.blueprint {inherit inputs;};
}