Files
wwdpublic/flake.nix
stellar-novas 9de58f9f15 Update to nixpkgs 24.05 (#431)
Nix devShell user only change, this doesn't affect normal building.
2024-06-02 15:59:03 -04:00

14 lines
411 B
Nix

{
description = "Development environment for Space Station 14";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";
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; };
});
}