Fediversity/services/fediversity/pixelfed/options.nix

15 lines
216 B
Nix
Raw Normal View History

2025-02-14 18:51:38 +01:00
{ config, lib, ... }:
{
2025-02-14 19:21:31 +01:00
options.fediversity.pixelfed =
(import ../sharedOptions.nix {
inherit config lib;
serviceName = "pixelfed";
serviceDocName = "Pixelfed";
})
//
{
2025-02-14 18:51:38 +01:00
};
}