added invulnerable chatters, completely reworked the way vulnerable chatters and admins is stored

This commit is contained in:
2025-07-17 22:05:56 +02:00
parent 0ebc3d7cf6
commit dcd2eda439
16 changed files with 142 additions and 23 deletions

18
flake.nix Normal file
View File

@@ -0,0 +1,18 @@
{
inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; };
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells."${system}" = {
default = pkgs.mkShell {
packages = with pkgs; [ bun nodejs deno ];
shellHook = ''
echo Loaded the qweribot dev shell
'';
};
};
};
}