initial commit

This commit is contained in:
Jonas Rabenstein 2025-09-25 16:01:17 +02:00
commit e788d55cca
6 changed files with 2479 additions and 0 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "spond bot";
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
outputs = { self, nixpkgs }: {
devShells = builtins.mapAttrs (_: pkgs: {
default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cargo
openssl.dev
pkg-config
];
};
}) nixpkgs.legacyPackages;
};
}