18 lines
332 B
Nix
18 lines
332 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = [
|
|
pkgs.xfce.thunar-archive-plugin
|
|
pkgs.xfce.thunar-media-tags-plugin
|
|
pkgs.xfce.thunar-vcs-plugin
|
|
pkgs.xfce.thunar-volman
|
|
];
|
|
};
|
|
|
|
programs.xfconf.enable = true;
|
|
}
|