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