21 lines
315 B
Nix
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
|
|
]);
|
|
}
|