INIT
This commit is contained in:
commit
fac6649189
2 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/docs/
|
11
shell.nix
Normal file
11
shell.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { }
|
||||
}:
|
||||
|
||||
pkgs.mkShellNoCC {
|
||||
name = "Godot";
|
||||
buildInputs = [
|
||||
pkgs.godot_4
|
||||
# C# will be available with https://github.com/NixOS/nixpkgs/pull/285941/
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue