13 lines
344 B
Nix
13 lines
344 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 = [ pkgs.janet ];
|
|
};
|
|
};
|
|
}
|