Files
gooberos/modules/development/packages.nix
2026-04-26 13:53:27 +02:00

15 lines
294 B
Nix

{ config, pkgs, ... }:
let
hasGui = config.services.dbus.implementation == "dbus";
{
environment.systemPackages = with pkgs; [
# Languages
nodejs
python3
go
just
nodejs
gcc
] ++ (if hasGui then [pkgs.wireshark-qt] else []);
}