37 lines
530 B
Nix
37 lines
530 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
rustnet = pkgs.callPackage ../../modules/common/rustnet.nix {};
|
|
weathr = pkgs.callPackage ../common/weathr.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
|
|
weathr
|
|
];
|
|
}
|