added blobhaj flags
|
@ -1,26 +1,19 @@
|
|||
{
|
||||
stdenvNoCC,
|
||||
fetchurl,
|
||||
unzip,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "blobhajFlags";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://heatherhorns.com/BlobhajFlags.zip";
|
||||
hash = "";
|
||||
};
|
||||
src = ./blobhajFlags;
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out
|
||||
cp 512w/*.png $out
|
||||
cp *.png $out
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
|
BIN
modules/fedi/blobhajFlags/BhjFlag_Ace.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Ally.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Aromantic.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Autism.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_BLM.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_BLM_Small.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Bisexual.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Demisexual.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Gay.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Genderfluid.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Genderqueer.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Intersex.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Lesbian.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Nonbinary.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Pansexual.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Polypi.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Polysexual.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Polytricolor.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Progress_Intersex_Left.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Progress_Intersex_Right.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_TransFemme.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_TransMasc.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
modules/fedi/blobhajFlags/BhjFlag_Transgender.png
Normal file
After Width: | Height: | Size: 23 KiB |
|
@ -6,7 +6,7 @@
|
|||
neofox = (pkgs.callPackage ./neofox.nix { });
|
||||
blobfox = (pkgs.callPackage ./blobfox.nix { });
|
||||
blobhaj = (pkgs.callPackage ./blobhaj.nix { });
|
||||
# blobhajFlags = (pkgs.callPackage ./blobhajFlags.nix { });
|
||||
blobhajFlags = (pkgs.callPackage ./blobhajFlags.nix { });
|
||||
in mkIf conf.fedi.enable {
|
||||
services.akkoma = {
|
||||
enable = true;
|
||||
|
@ -109,7 +109,7 @@ in mkIf conf.fedi.enable {
|
|||
"emoji/neofox" = neofox;
|
||||
"emoji/blobfox" = blobfox;
|
||||
"emoji/blobhaj" = blobhaj;
|
||||
# "emoji/blobhajFlags" = blobhajFlags;
|
||||
"emoji/blobhajFlags" = blobhajFlags;
|
||||
};
|
||||
nginx = {
|
||||
serverName = "fedi.twoneis.site";
|
||||
|
|