Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion home-manager/packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ with pkgs;
yarn
yazi
yq
yt-dlp
zellij
zoxide
]
Expand Down Expand Up @@ -157,6 +156,7 @@ with pkgs;
wl-clip-persist
wl-clipboard
wtype
yt-dlp

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Placing yt-dlp under the isLinux && isDesktop condition removes it from non-desktop Linux environments (e.g., servers). As yt-dlp is a command-line utility, it can be useful in such environments. If its availability is desired on all Linux systems, consider placing it in the lib.optionals stdenv.isLinux block (lines 97-121) instead.

]
++ lib.optionals isDev [
gopls
Expand Down
1 change: 1 addition & 0 deletions nix-darwin/config/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"sshpass"
"temporal"
"watchexec"
"yt-dlp"
];
casks = [
"antigravity"
Expand Down
Loading