Changed: Programms

This commit is contained in:
2025-04-16 21:54:10 +02:00
parent cbc9e868ee
commit c65ea98734
16 changed files with 274 additions and 39 deletions

View File

@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
ffmpeg_6-full
gphoto2
v4l-utils
];
programs.mpv = {
enable = true;
defaultProfiles = ["gpu-hq"];
scripts = [pkgs.mpvScripts.mpris];
};
}