Files
the-monospace-web-pandoc/flake.nix
Oskar Wickström 50b890a226 init
2024-08-21 16:48:39 +02:00

35 lines
621 B
Nix

{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
};
outputs =
{
self,
systems,
nixpkgs,
}:
let
eachSystem = nixpkgs.lib.genAttrs (import systems);
in
{
devShells = eachSystem (
system:
let
pkgs = (import nixpkgs { inherit system; });
in
{
default = pkgs.mkShell {
packages = [
pkgs.live-server
pkgs.pandoc
];
};
}
);
};
}