forked from SpaceStation14-Shenanigans/Monolith
b8cfff831f
Co-authored-by: Tobias Berger <toby@tobot.dev> Co-authored-by: EchoOfNothing <52498373+EchoOfNothing@users.noreply.github.com> Co-authored-by: MidoriKurage <104000416+mdrkrg@users.noreply.github.com>
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; };
|
|
}
|
|
);
|
|
}
|