blob: ea39b83e40d7825052f13d6ba27b06155d08296e (
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
36
37
38
39
|
{ 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
# FUTURE: Check if Linux kernel of NixOS 25.05 still has this amdgpu bug.
(pkgs.writeShellScriptBin "zed" ''
export ZED_PATH_SAMPLE_COUNT=0 # workaround for https://github.com/zed-industries/zed/issues/26143
exec ${pkgs-unstable.zed-editor}/bin/zeditor "$@"
'')
vscodium
# I'm installing extensions via my install-imperative script.
platformio
];
virtualisation.podman = {
enable = true;
dockerSocket.enable = true;
};
}
|