25 lines
319 B
Nix
25 lines
319 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment = {
|
|
# Systemwide installed packages
|
|
systemPackages = with pkgs; [
|
|
iftop
|
|
openssl
|
|
git
|
|
btop
|
|
wget
|
|
zulu
|
|
apx
|
|
podman
|
|
helix
|
|
distrobox
|
|
];
|
|
};
|
|
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
dockerCompat = true;
|
|
};
|
|
}
|
|
|