feat: Add initial Mobilizon => Discord sync (#1)

Closes #2 , #3

Co-authored-by: Piotr Gaczkowski <DoomHammerNG@gmail.com>
Reviewed-on: #1
Reviewed-by: leming leming <leming@hs3.pl>
This commit is contained in:
Piotr Gaczkowski 2026-04-20 18:42:04 +00:00
parent 246ef4c829
commit 2ec156422b
14 changed files with 742 additions and 57 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
# Use npins to pin nixpkgs dependencies
# This makes it easier to cache build results
{
sources ? import ./npins,
system ? builtins.currentSystem,
pkgs ? import sources.nixpkgs {
inherit system;
config = { };
overlays = [ ];
},
}:
# Create a nix shell with devenv (so `use devenv` can work in direnv/.envrc)
pkgs.mkShell {
buildInputs = with pkgs; [
devenv
];
}