added blobhaj flags

This commit is contained in:
twoneis 2025-02-24 20:28:56 +01:00
parent 36853433f5
commit c35aec21f0
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{
stdenvNoCC,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation {
pname = "blobhajFlags";
version = "1.0";
src = fetchurl {
url = "https://heatherhorns.com/BlobhajFlags.zip";
hash = "";
};
sourceRoot = ".";
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out
cp 512w/*.png $out
runHook postInstall
'';
}

View file

@ -5,6 +5,8 @@
neocat = (pkgs.callPackage ./neocat.nix { }); neocat = (pkgs.callPackage ./neocat.nix { });
neofox = (pkgs.callPackage ./neofox.nix { }); neofox = (pkgs.callPackage ./neofox.nix { });
blobfox = (pkgs.callPackage ./blobfox.nix { }); blobfox = (pkgs.callPackage ./blobfox.nix { });
blobhaj = (pkgs.callPackage ./blobhaj.nix { });
blobhajFlags = (pkgs.callPackage ./blobhajFlags.nix { });
in mkIf conf.fedi.enable { in mkIf conf.fedi.enable {
services.akkoma = { services.akkoma = {
enable = true; enable = true;
@ -106,6 +108,8 @@ in mkIf conf.fedi.enable {
"emoji/neocat" = neocat; "emoji/neocat" = neocat;
"emoji/neofox" = neofox; "emoji/neofox" = neofox;
"emoji/blobfox" = blobfox; "emoji/blobfox" = blobfox;
"emoji/blobhaj" = blobhaj;
"emoji/blobhajFlags" = blobhajFlags;
}; };
nginx = { nginx = {
serverName = "fedi.twoneis.site"; serverName = "fedi.twoneis.site";