20 lines
210 B
Nix
20 lines
210 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
nano
|
|
vim
|
|
git
|
|
curl
|
|
wget
|
|
sops
|
|
age
|
|
inetutils
|
|
mtr
|
|
sysstat
|
|
dig
|
|
openssl
|
|
fastfetch
|
|
];
|
|
}
|