Add nix flake with development environment shell and direnv. (#16047)
Use with nix-direnv, `nix-shell` or `nix develop`.
This commit is contained in:
committed by
GitHub
parent
ee023b567a
commit
e94d36f51a
13
flake.nix
Normal file
13
flake.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user