arnes.space-bagatto/flake.nix
2021-07-07 20:33:27 +02:00

13 lines
364 B
Nix

{
description = "A flake describing the build and dev environment for arnes.space";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }: let
platform = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${platform};
in {
devShell.${platform} = pkgs.mkShell {
buildInputs = with pkgs; [ janet multimarkdown ];
};
};
}