31 lines
403 B
Nix
31 lines
403 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = (
|
|
with pkgs;
|
|
[
|
|
wget
|
|
nixfmt
|
|
tree-sitter
|
|
lsof
|
|
exiftool
|
|
trash-cli
|
|
ffmpeg
|
|
unzip
|
|
scdl
|
|
aria2
|
|
nodejs
|
|
gomi
|
|
bun
|
|
croc
|
|
mp3val
|
|
flac
|
|
(python314.withPackages (
|
|
ps: with ps; [
|
|
requests
|
|
python-dotenv
|
|
]
|
|
))
|
|
]
|
|
);
|
|
}
|