website/flake.nix
2025-02-19 15:39:30 +01:00

24 lines
440 B
Nix

{
description = "Website";
outputs = { self, nixpkgs }:
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShell.x86_64-linux = with pkgs;
mkShell {
nativeBuildInputs = [
entr
graphviz-nox
imagemagick
just
libavif
libjxl
nodejs
nushell
pandoc
tup
];
};
};
}