mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2025-06-24 13:26:11 +00:00
This involves actually moving to Cloudflare Workers' Static Assets (not to be confused with deprecated Worker Sites) from Pages, alongside adding a few other dependencies at the devenv.nix side of the things. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
30 lines
408 B
Nix
30 lines
408 B
Nix
{ pkgs, ... }: {
|
|
|
|
packages = with pkgs; [
|
|
gitFull
|
|
pipenv
|
|
|
|
# required for social cards in mkdocs-material
|
|
cairo
|
|
freetype
|
|
libffi
|
|
libjpeg
|
|
zlib
|
|
pngquant
|
|
];
|
|
|
|
languages = {
|
|
javascript = {
|
|
enable = true;
|
|
package = pkgs.nodejs_22;
|
|
};
|
|
python = {
|
|
enable = true;
|
|
version = "3.13.3";
|
|
};
|
|
};
|
|
|
|
enterShell = ''
|
|
pipenv install
|
|
'';
|
|
}
|