nixos/hosts/marauder/dev.nix
2025-05-31 16:24:33 -07:00

29 lines
354 B
Nix
Executable file

{ pkgs, ... }:
{
environment.variables = {
VISUAL = "code --wait";
};
environment.systemPackages = with pkgs; [
# Code Editors
vscode
arduino-ide
# Dev Tools
nixd
nixpkgs-fmt
pyenv
rustup
electron
# Languages
gcc
kotlin
nodejs
php
];
programs.direnv = {
enable = true;
};
}