Add nix flake with development environment shell and direnv. (#16047)

Use with nix-direnv, `nix-shell` or `nix develop`.
This commit is contained in:
Vera Aguilera Puerto
2023-05-09 17:28:12 +02:00
committed by GitHub
parent ee023b567a
commit e94d36f51a
5 changed files with 109 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
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;
};
}