Let there be light
This commit is contained in:
commit
6b8a916cd5
6 changed files with 68 additions and 0 deletions
13
flake.nix
Normal file
13
flake.nix
Normal 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 ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue