blob: 970e45391b1c6ba510b6f52d9ef317d0c976aef5 (
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
|
{ config, pkgs, pkgs-unstable, ... }:
{
environment.systemPackages = with pkgs; [
rustup
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;
};
}
|