nixos/machines/core/core.nix

44 lines
545 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, pkgs, lib, ... }:
{
# Packages
environment.systemPackages = with pkgs; [
bandwhich
bind # dig
borgbackup
cryptsetup
file
fzf
gettext
git
gitAndTools.delta
gnufdisk
gptfdisk
htop
jq
killall
lsof
mosh
2023-01-15 12:18:48 +01:00
multipath-tools # kpartx
2020-11-16 21:14:46 +01:00
mtr
nmap
nmon
2023-06-19 22:22:16 +02:00
ouch # de-/compress
2020-11-16 21:14:46 +01:00
pciutils
2023-05-23 21:55:28 +02:00
progress
2020-11-16 21:14:46 +01:00
pv
reptyr
rsync
screen
stress-ng
usbutils
tmux
vim
wget
whois
zip
unzip
];
time.timeZone = "Europe/Berlin";
}