website/flake.nix
Fabien Freling c332e7d391 add nushell
2024-11-27 10:09:08 +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
];
};
};
}