15 lines
182 B
Nix
15 lines
182 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
# Recovery and bootstrap tools
|
|
curl
|
|
wget
|
|
vim
|
|
|
|
# Nix tooling
|
|
nixd
|
|
nil
|
|
|
|
cloudflared
|
|
];
|
|
}
|