HermitCollective.nix/system/packages.nix

17 lines
190 B
Nix
Raw Normal View History

2024-03-06 10:04:28 +00:00
{ pkgs, ... }:
{
environment = {
# Systemwide installed packages
systemPackages = with pkgs; [
iftop
openssl
git
btop
2024-04-04 00:19:52 +00:00
wget
2024-08-16 11:36:41 +00:00
zulu
2024-03-06 10:04:28 +00:00
];
};
}