28 lines
535 B
Nix
28 lines
535 B
Nix
{ config, pkgs, ... }: {
|
|
programs.thunar.enable = true;
|
|
|
|
programs.xfconf.enable = true;
|
|
|
|
programs.thunar.plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin # ! not working
|
|
thunar-volman
|
|
];
|
|
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
|
|
services.udisks2.enable = true;
|
|
security.polkit.enable = true;
|
|
|
|
services.dbus.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gdk-pixbuf
|
|
ffmpegthumbnailer
|
|
ffmpeg-headless
|
|
];
|
|
|
|
environment.pathsToLink = [ "share/thumbnailers" ];
|
|
|
|
}
|