Files
gooberos/modules/development/packages.nix

15 lines
294 B
Nix
Raw Normal View History

2026-04-26 13:53:27 +02:00
{ config, pkgs, ... }:
let
hasGui = config.services.dbus.implementation == "dbus";
2026-03-30 00:20:36 +02:00
{
environment.systemPackages = with pkgs; [
# Languages
nodejs
python3
go
just
nodejs
2026-04-04 18:23:05 +02:00
gcc
2026-04-26 13:53:27 +02:00
] ++ (if hasGui then [pkgs.wireshark-qt] else []);
2026-04-02 02:44:48 +02:00
}