Files
nixos-config/servers/hetzner/modules/system/env.nix
T
jory c5f771bd53
CI / Formatting check (x86_64-linux) (push) Has been cancelled
CI / Flake check (aarch64-linux) (push) Has been cancelled
CI / Flake check (x86_64-linux) (push) Has been cancelled
CI / Formatting check (aarch64-linux) (push) Has been cancelled
Added hetzner server configs
2026-07-11 20:28:51 +02:00

29 lines
393 B
Nix

{
config,
pkgs,
lib,
...
}: {
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
environment.systemPackages = with pkgs; [
vim
git
curl
wget
htop
iotop
btop
bind.dnsutils # provides dig, nslookup, host
jq
yq
fish
podman-compose
];
programs.fish.enable = true;
programs.bash.enableCompletion = true;
}