feat: first commit

This commit is contained in:
CronyAkatsuki 2025-12-21 09:05:07 +01:00
commit b90bd077d9
24 changed files with 935 additions and 0 deletions

23
flake.nix Normal file
View file

@ -0,0 +1,23 @@
{
description = "hb-downloader";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = {
self,
nixpkgs,
flake-utils,
pre-commit-hooks,
...
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.x86_64-linux.default =
import ./shell.nix {inherit pkgs pre-commit-hooks;};
packages.x86_64-linux.default = import ./default.nix {inherit pkgs;};
};
}