mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 17:09:46 +01:00
17 lines
225 B
Nix
17 lines
225 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}:
|
|
# processing audio/video
|
|
{
|
|
home.packages = with pkgs; [
|
|
ffmpeg-full
|
|
|
|
# images
|
|
viu # Terminal image viewer with native support for iTerm and Kitty
|
|
imagemagick
|
|
graphviz
|
|
];
|
|
}
|