nixos-configuration/home-manager/modules/cli.nix
Jakob Lechner 7168d62706
Add inetutils
Add it to install telnet. It also includes whois.
2023-11-08 23:43:37 +00:00

21 lines
315 B
Nix

{ nixosConfig, lib, pkgs, ... }:
{
home.packages = with pkgs; [
cached-nix-shell
file
htop
inetutils
jq
lsof
ncdu
ripgrep
] ++ (if ! nixosConfig.jalr.workstation.enable then [ ] else [
direnv
dnsutils
screen
speedtest-cli
usbutils
wget
yt-dlp
]);
}