13 lines
214 B
Nix
13 lines
214 B
Nix
{pkgs, inputs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.agenix.packages."${stdenv.hostPlatform.system}".default
|
|
wget
|
|
curl
|
|
git
|
|
rsync
|
|
net-tools
|
|
alejandra
|
|
nixd
|
|
];
|
|
}
|