blob: 11bb1c9717fc1cea81f3405d8913741e6e7c4ae7 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
{
me,
pkgs,
auxiliaryPkgs,
unstablePkgs,
...
}:
let
inherit (builtins) filter elem;
filterUnsupportedPackages =
packages: filter (p: elem me.system (p.meta.platforms or [ me.system ])) packages;
in
{
# TODO: the filter already does some good work, but we need some way to
# pick out x86-only packages, so it is not as opaque as it currently is.
# (who knows if muse-sounds-manager is actually installed, for example?)
environment.systemPackages = (with pkgs; filterUnsupportedPackages [
file unzip tree jq dig htop wget screen dive
gnupg pinentry-gnome3 pinentry-curses age agenix minisign openssl cryptsetup pamtester
bitwarden-desktop bitwarden-cli
inetutils pciutils usbutils lshw lsof inxi iw pmutils acpi acpid
minicom miniserve netcat-gnu socat tcpdump nmap iftop iperf mtr arp-scan ethtool
sysprof wireshark seer mitmproxy hardinfo2 btrfs-assistant trayscale
vlc celluloid foliate calibre
yt-dlp ffmpeg_7-full imagemagick handbrake mpv helvum pulseaudio
gimp3 krita mypaint aseprite rnote fontforge-gtk
blender inkscape obs-studio darktable davinci-resolve
orca-slicer
renderdoc
audacity musescore muse-sounds-manager reaper
# bitwigs bubblewrap configuration requires some non-ARM package sets.
# bitwig-studio
ungoogled-chromium librewolf lagrange
senpai signal-desktop newsflash
qemu_full virtiofsd
openvpn openvpn3 update-resolv-conf
mullvad-vpn mullvad-closest
transmission_4-gtk fragments
xorg.xeyes wl-clipboard
ripgrep hyperfine parallel just fzf bat delta eza fd tokei didyoumean
universal-ctags compiledb graphviz
python3 uv ruff black
nodejs_22 deno yarn
rustc rustup cargo rustfmt
go gopls delve go-task gotags golangci-lint
meson cmake gnumake ninja gdb gcc clang clang-tools
hare haredoc
jdk maven gradle
nil nixfmt-rfc-style
nixpkgs-review nixpkgs-fmt nixpkgs-lint-community
shellcheck shfmt
postgresql
helix alacritty ghostty
androidStudioPackages.dev
glab gh
winetricks bottles
scrcpy apfs-fuse nfs-utils
ubootTools dtc cloud-utils
borgbackup pika-backup
moonlight-qt remmina
prismlauncher xonotic
man-pages man-pages-posix
]) ++ (with unstablePkgs; [
claude-code gemini-cli antigravity-fhs beekeeper-studio
]) ++ (with auxiliaryPkgs; [
# TODO: need fixes for 25.05
# retroarch wine
# TODO: ngfx (obviously) does not work on ARM, put it somewhere else
# ngfx
]);
environment.etc.openvpn.source = "${pkgs.update-resolv-conf}/libexec/openvpn";
}
|