19 lines
213 B
Nix
19 lines
213 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
nixfmt
|
|
tree-sitter
|
|
lsof
|
|
exiftool
|
|
trash-cli
|
|
ffmpeg
|
|
unzip
|
|
scdl
|
|
aria2
|
|
python3
|
|
nodejs
|
|
gomi
|
|
];
|
|
}
|