51 lines
595 B
Nix
51 lines
595 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# system packges
|
|
environment.systemPackages = with pkgs; [
|
|
alacritty
|
|
btop
|
|
cowsay
|
|
dnsutils
|
|
ethtool
|
|
file
|
|
ghostty
|
|
git
|
|
gnupg
|
|
imagemagick
|
|
imv
|
|
iperf3
|
|
jq
|
|
kdePackages.qtmultimedia
|
|
kitty
|
|
ldns
|
|
lm_sensors
|
|
lsof
|
|
ltrace
|
|
mtr
|
|
neovim
|
|
nh
|
|
nix-output-monitor
|
|
nmap
|
|
nvd
|
|
p7zip
|
|
pciutils
|
|
sddm-astronaut
|
|
socat
|
|
strace
|
|
sysstat
|
|
tree
|
|
unzip
|
|
usbutils
|
|
vim
|
|
wget
|
|
which
|
|
xz
|
|
zip
|
|
zstd
|
|
];
|
|
|
|
# browser
|
|
programs.firefox.enable = true;
|
|
}
|