2023-05-09 17:28:12 +02:00
|
|
|
{
|
2023-06-08 21:25:04 +02:00
|
|
|
description = "Development environment for Space Station 14";
|
2023-05-09 17:28:12 +02:00
|
|
|
|
2023-12-17 16:55:37 +00:00
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
|
2023-05-09 17:28:12 +02:00
|
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
|
|
2023-06-08 21:25:04 +02:00
|
|
|
outputs = { self, nixpkgs, flake-utils }:
|
|
|
|
|
flake-utils.lib.eachDefaultSystem (system: let
|
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
|
in {
|
|
|
|
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
|
|
|
|
});
|
2023-05-09 17:28:12 +02:00
|
|
|
}
|