nixos-configuration/home-manager/modules/cli.nix
2023-11-08 23:35:55 +00:00

21 lines
311 B
Nix

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