2022-11-20 22:10:39 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
2022-08-13 20:59:05 +00:00
|
|
|
psCfg = config.pub-solar;
|
|
|
|
cfg = config.pub-solar.core;
|
2022-11-20 22:10:39 +00:00
|
|
|
in {
|
2023-10-07 14:45:42 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Core unix utility packages
|
|
|
|
coreutils-full
|
|
|
|
dnsutils
|
|
|
|
inetutils
|
|
|
|
progress
|
|
|
|
pciutils
|
|
|
|
usbutils
|
|
|
|
diffutils
|
|
|
|
findutils
|
2023-11-01 15:27:29 +00:00
|
|
|
psmisc
|
2023-10-07 14:45:42 +00:00
|
|
|
exfat
|
2022-08-14 13:11:01 +00:00
|
|
|
|
2023-10-08 17:32:00 +00:00
|
|
|
gitMinimal
|
2023-10-09 08:43:53 +00:00
|
|
|
|
2024-02-16 10:18:35 +00:00
|
|
|
rsync
|
|
|
|
|
2023-10-09 08:43:53 +00:00
|
|
|
btop
|
2023-10-07 14:45:42 +00:00
|
|
|
];
|
2022-08-13 20:59:05 +00:00
|
|
|
}
|