beherbergung/deployment/modules/default.nix

16 lines
260 B
Nix

{ config, pkgs, ... }:
{
time.timeZone = "Europe/Berlin";
environment.systemPackages = with pkgs; [
vim tmux
wget curl
htop atop iotop iftop
file bc jq
git gnupg
bind.dnsutils
];
environment.variables = { EDITOR = "vim"; };
}