20 lines
293 B
Nix
20 lines
293 B
Nix
{
|
|
host,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
programs = {
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
ffmpegthumbnailer # Need For Video / Image Preview
|
|
];
|
|
}
|