14 lines
312 B
Nix
14 lines
312 B
Nix
{
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
|
|
inputs.flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
outputs = { self, nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.simpleFlake {
|
|
inherit self nixpkgs;
|
|
name = "space-station-14-devshell";
|
|
shell = ./shell.nix;
|
|
};
|
|
|
|
}
|