blob: e550a4cdb08764a3d1a15f91fb41a6d6972b9f42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{ config, pkgs, pkgs-unstable, ... }:
{
environment.systemPackages = with pkgs; [
rustup
go
python313
nodejs_22
# CLI tools
docker-compose
gnumake
jq
just
sqlite-interactive
tokei
fastmod
license-generator
(writeShellScriptBin "deploy-dir" (builtins.readFile ./scripts/deploy-dir))
gcc # rustc fails if cc linker isn't found
chromium
pkgs-unstable.zed-editor
vscodium
# I'm installing extensions via my install-imperative script.
platformio
];
virtualisation.podman = {
enable = true;
dockerSocket.enable = true;
};
}
|