Update to Nix setup and remove SoFurry links

This commit is contained in:
Eric Rodrigues Pires 2026-01-10 19:39:49 -03:00
parent 52de1f49ac
commit 56d6d2047f
12 changed files with 2948 additions and 1492 deletions

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
description = "gallery.badmanners.xyz";
inputs = {
nixpkgs.url = "nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
flakedPkgs = pkgs;
devShells.default = pkgs.mkShell {
packages = [
pkgs.bun
pkgs.rsync
];
};
}
);
}