Let there be light

This commit is contained in:
heyarne 2021-07-07 16:06:47 +02:00
commit 6b8a916cd5
6 changed files with 68 additions and 0 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
{
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 ];
};
};
}