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