project-kyoku/flake.nix

15 lines
297 B
Nix
Raw Normal View History

2022-09-18 17:27:22 +02:00
{
description = "Project Kyoku";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = import ./shell.nix { inherit pkgs; };
}
);
}