Nixos: Setup PlatformIO-IDE With Vscodium
Setting Up PlatformIO and PlatformIO IDE on NixOS with VSCodium
This guide provides step-by-step instructions for setting up PlatformIO along with its IDE extension in a NixOS environment, using VSCodium as the code editor. This setup leverages nix-shell
to create an isolated development environment tailored for embedded systems development.
Prerequisites / Sources
- A functioning NixOS NixOS installation.
- VSCodium information.
- Basic familiarity with terminal commands and editing files on Linux.
This guide is partially based on information from Nixos wiki and Nixpgs PR-237313.
Step 1: Create Your shell.nix
Create a file named shell.nix
in your desired directory. This file will define the development environment:
|
|
Step 2: Enter the Nix Shell Environment
Open a terminal, navigate to your directory containing shell.nix
, and run:
|
|
This command loads the specified environment with all necessary packages.
Step 3: Download and Patch PlatformIO IDE Extension
Create a bash script named setup-platformio-ide.sh
in the same directory as your shell.nix
. This script will download, patch, and install the PlatformIO extension for VSCodium:
|
|
Step 4: Run the Setup Script
Execute the script to download, patch, and install the PlatformIO IDE extension:
|
|
This process may take a few minutes. Once completed, you can launch VSCodium using the codium command, and the PlatformIO IDE should be available as an installed extension.
Step 5: Start Using PlatformIO
With everything set up, you’re now ready to start developing with PlatformIO on NixOS using VSCodium. Open or create your projects in VSCodium, and utilize PlatformIO’s capabilities for embedded development.
This guide provides a reproducible environment setup that can be easily adjusted or expanded by modifying the shell.nix
file according to your project requirements. Happy coding!