nix-dotfiles/hosts/tsuki/services/matrix/maunium-stickerpicker.nix

39 lines
933 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: let
stickerpacks = pkgs.callPackage ./stickers { };
2023-01-03 22:45:41 +01:00
in {
services.maunium-stickerpicker = {
enable = true;
instances."pingu" = {
realMatrixDomain = "matrix.nani.wtf";
stickerMatrixDomain = "pingu-stickers.nani.wtf";
# These will be defined by `useACMECert` in nginx config
enableACME = false;
stickerpacks = with stickerpacks; [
dogCatCatgirlSide
frownCat1
niniCouple1
niniCouple2
sweetCouple1
pokemonPiplup
hutao
];
};
2023-01-16 16:10:12 +01:00
instances."h7x4" = {
realMatrixDomain = "matrix.nani.wtf";
stickerMatrixDomain = "h7x4-stickers.nani.wtf";
enableACME = false;
stickerpacks = with stickerpacks; [
dogCatDogboySide
niniCouple1
niniCouple2
sweetCouple1
frownCat2
pokemonPiplup
hololiveENGura
misc
];
};
};
2023-01-03 22:45:41 +01:00
}