website/flake.nix

23 lines
423 B
Nix
Raw Permalink Normal View History

2024-11-19 14:58:12 +01:00
{
description = "Website";
outputs = { self, nixpkgs }:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShell.x86_64-linux = with pkgs;
mkShell {
nativeBuildInputs = [
2024-11-26 14:38:41 +01:00
graphviz-nox
2024-11-19 14:58:12 +01:00
imagemagick
just
libavif
libjxl
2024-11-26 14:38:41 +01:00
nodejs
2024-11-26 14:38:41 +01:00
nushell
2024-11-19 14:58:12 +01:00
pandoc
tup
];
};
};
}