nixos-config/common/packages-full.nix

37 lines
447 B
Nix
Raw Normal View History

2024-04-22 21:24:54 +02:00
{
pkgs,
lib,
...
}: {
2024-04-22 21:47:52 +02:00
# Packages installed on full-install machines
environment.systemPackages = with pkgs; [
nextdns
2024-06-26 18:52:51 +02:00
rustdesk-flutter
2024-04-22 21:47:52 +02:00
# need to test
helix
holehe
smartmontools
cheat
lazygit
ripgrep
jq
yq
neofetch
2024-05-29 22:41:28 +02:00
fastfetch
cpufetch
2024-04-22 21:47:52 +02:00
tldr
2024-05-06 13:10:44 +02:00
# dust
2024-04-22 21:47:52 +02:00
powertop
fzf
atuin
zellij
eza
lapce
gotty
gping
yazi
vulnix # once im on stable
];
2024-04-22 21:24:54 +02:00
}