15 lines
168 B
Nix
15 lines
168 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment = {
|
||
|
# Systemwide installed packages
|
||
|
systemPackages = with pkgs; [
|
||
|
iftop
|
||
|
openssl
|
||
|
git
|
||
|
btop
|
||
|
];
|
||
|
};
|
||
|
}
|
||
|
|