diff --git a/configuration.nix b/configuration.nix index cce4d15..e1aa28b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -143,6 +143,9 @@ in # Enable the OpenSSH daemon. services.openssh.enable = true; + # Enable thumbnailer service + services.tumbler.enable = true; + # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ]; diff --git a/system-packages.nix b/system-packages.nix index 09fbd90..91d6b3f 100644 --- a/system-packages.nix +++ b/system-packages.nix @@ -14,6 +14,8 @@ xdg-utils # xdg directories, open, etc sweet # gtk theme capitaine-cursors # cursor theme + tumbler # image files thumbnail generator (+ base requirement) + ffmpegthumbnailer # video files thumbnail generator ]; }