https://github.com/linuxmobile/godot-flake
Nix Flake for Godot: Quick setup with integrated devShell
https://github.com/linuxmobile/godot-flake
Last synced: 6 months ago
JSON representation
Nix Flake for Godot: Quick setup with integrated devShell
- Host: GitHub
- URL: https://github.com/linuxmobile/godot-flake
- Owner: linuxmobile
- Created: 2024-03-17T18:34:51.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-04T14:42:54.000Z (11 months ago)
- Last Synced: 2025-07-20T07:58:18.032Z (6 months ago)
- Language: Nix
- Size: 6.84 KB
- Stars: 8
- Watchers: 2
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎮 Godot DevShell for Nix Developers 🐧
Welcome to the Godot DevShell for Nix developers! This guide will help you set up your environment to start developing with Godot on Nix. Let's get started! 🚀
## 📚 Prerequisites
Before we start, make sure you have Nix installed on your system. If you haven't, you can install it by running:
```sh
curl -L https://nixos.org/nix/install | sh
```
## 📦 Installation
1. Clone the repository
First, clone this repository to your local machine using:
```sh
git clone
```
2. Enter the development shell
Navigate to the cloned repository and enter the development shell:
```sh
cd
nix develop
```
This will set up the environment with all the necessary dependencies, including Godot.
## 🎉 Start Developing!
You're all set! You can now start developing with Godot. To run Godot, simply type godot in your terminal.
## 📜 Credits
This project uses the following resources:
- NixOS/nixpkgs
- numtide/flake-utils
Happy coding! 🎈
```