Skip to content

Commit

Permalink
fix(nextcloud): add ffmpeg for video thumbnails
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Jan 7, 2025
1 parent 0ff34e3 commit fb967fe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hosts/server/nextcloud.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ in {
owner = "nextcloud";
group = "nextcloud";
};
environment.systemPackages = [ pkgs.ffmpeg_6 ];
services.nextcloud = {
enable = true;
package = pkgs.nextcloud30;
Expand All @@ -15,6 +16,7 @@ in {
};
extraAppsEnable = true;
autoUpdateApps.enable = true;
phpOptions."opcache.interned_strings_buffer" = "23";
configureRedis = true;
maxUploadSize = "1G";
hostName = "192.168.189.2";
Expand All @@ -29,11 +31,14 @@ in {
"OC\\Preview\\Krita"
"OC\\Preview\\MarkDown"
"OC\\Preview\\MP3"
"OC\\Preview\\MP4"
"OC\\Preview\\OpenDocument"
"OC\\Preview\\PNG"
"OC\\Preview\\TXT"
"OC\\Preview\\XBitmap"
"OC\\Preview\\HEIC"
"OC\\Preview\\Image"
"OC\\Preview\\Movie"
];
maintenance_window_start = 6;
default_timezone = "America/New_York";
Expand Down

0 comments on commit fb967fe

Please sign in to comment.