16 lines
305 B
Nix
16 lines
305 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs = {
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
|
};
|
|
xfconf.enable = true;
|
|
};
|
|
services = {
|
|
gvfs.enable = true; # Mount, trash, ...
|
|
tumbler.enable = true; # Thumbnail support for images.
|
|
};
|
|
}
|