teutat3s
e43cb021ce
This still needs updates in the NixOS module to account for the changes in https://github.com/mastodon/mastodon/pull/24655 that change how multiple streaming processes run. Hopefully this is fine for a single streaming process though. https://github.com/NixOS/nixpkgs/pull/251950 https://github.com/teutat3s/nixpkgs/tree/mastodon-4.2.1
18 lines
284 B
Nix
18 lines
284 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake = {
|
|
nixosModules = rec {
|
|
overlays = ({ ... }: {
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
mastodon = inputs.mastodon-fork.legacyPackages.${prev.system}.mastodon;
|
|
})
|
|
];
|
|
});
|
|
};
|
|
};
|
|
}
|