beherbergung/deployment/modules/default.nix

16 lines
260 B
Nix
Raw Normal View History

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