worked on various things

This commit is contained in:
Chris Kruining 2025-06-17 16:13:40 +02:00
parent f3cb35653e
commit 3c35b89250
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
18 changed files with 156 additions and 126 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
description = "Streamarr";
inputs = {
nixpkgs.url = "github:nixos/nixpkgsnixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
bix = {
url = "github:knarkzel/bix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = bix.buildBunPackage {
src = ./.;
packages = ./package.json;
};
});
}