mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-14 20:49:34 +01:00
23 lines
470 B
Nix
23 lines
470 B
Nix
{
|
|
description = "Development environment for Space Station 14";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-25.11";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs =
|
|
{
|
|
self,
|
|
nixpkgs,
|
|
flake-utils,
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShells.default = import ./shell.nix { inherit pkgs; };
|
|
}
|
|
);
|
|
}
|