dotnix/modules/core/thunar.nix
2025-03-29 19:05:05 +01:00

18 lines
358 B
Nix

{ host, pkgs, ... }:
let
inherit (import ../../hosts/${host}/variables.nix) thunarEnable;
in
{
programs = {
thunar = {
enable = thunarEnable;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
};
environment.systemPackages = with pkgs; [
ffmpegthumbnailer # Video/image preview
];
}