website/flake.nix
Fabien Freling 5066f456f1 add nushell
2024-11-27 15:24:32 +01:00

21 lines
379 B
Nix

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