os/modules/core/packages.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
383 B
Nix
Raw Normal View History

{
config,
pkgs,
lib,
...
}:
with lib; let
psCfg = config.pub-solar;
cfg = config.pub-solar.core;
in {
environment.systemPackages = with pkgs; [
# Core unix utility packages
coreutils-full
diffutils
dnsutils
exfat
file
findutils
inetutils
progress
pciutils
usbutils
gitMinimal
btop
mtr
2024-02-07 18:10:21 +00:00
nmap
nload
];
}