Files
nixos-haus/modules/userapps/utils.nix
kenny 62b27043f1 Essentially more sw + GRUB live usb trial
Installed and configured Yggdrasil; ported rustnet and install; GRUB
trial of USB Live stick
2026-02-07 17:40:21 +02:00

35 lines
466 B
Nix

{
config,
pkgs,
...
}: let
rustnet = pkgs.callPackage ../../modules/common/rustnet.nix {};
in {
programs.neovim = {defaultEditor = true;};
environment.systemPackages = with pkgs; [
parallel-disk-usage
pciutils
btop
nload
htop
nethogs
uutils-coreutils-noprefix
neovim
git
curl
bat
eza
dua
ripgrep
dig
fd
proxychains-ng
unzip
wget
just
nh
tty-clock
rustnet
];
}