37 lines
447 B
Nix
37 lines
447 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
# Packages installed on full-install machines
|
|
environment.systemPackages = with pkgs; [
|
|
nextdns
|
|
rustdesk-flutter
|
|
|
|
# need to test
|
|
helix
|
|
holehe
|
|
smartmontools
|
|
cheat
|
|
lazygit
|
|
ripgrep
|
|
jq
|
|
yq
|
|
neofetch
|
|
fastfetch
|
|
cpufetch
|
|
tldr
|
|
# dust
|
|
powertop
|
|
fzf
|
|
atuin
|
|
zellij
|
|
eza
|
|
lapce
|
|
gotty
|
|
gping
|
|
yazi
|
|
vulnix # once im on stable
|
|
];
|
|
}
|