First programs

This commit is contained in:
Nio 2026-05-07 08:06:28 +02:00
parent 9bb4df0449
commit 0419648594

View file

@ -0,0 +1,19 @@
{pkgs, ...}
{
# Important packages for everything
environment.systemPackages = with pkgs; [
git
htop
tree
curl
wget
docker
];
# Coding
environment.systemPackages = with pkgs; [
vscode
];
}