mastodon-container/flake.nix

18 lines
396 B
Nix
Raw Permalink Normal View History

2023-07-25 18:37:43 -07:00
{
description = "Mastodon running in a container";
inputs = {
2024-01-28 12:26:11 -08:00
nixpkgs.url = "nixpkgs/nixos-23.11";
2023-07-25 18:37:43 -07:00
arion.url = "github:hercules-ci/arion";
};
outputs = { self, nixpkgs, arion, ... }: {
nixosModules = rec {
default = mastodonContainer;
mastodonContainer = { ... }: {
imports = [ arion.nixosModules.arion ./mastodon-container.nix ];
};
};
};
}