15 lines
219 B
Nix
15 lines
219 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.thunar = {
|
||
|
enable = true;
|
||
|
plugins = with pkgs.xfce; [
|
||
|
thunar-archive-plugin
|
||
|
thunar-volman
|
||
|
];
|
||
|
};
|
||
|
|
||
|
services.gvfs.enable = true;
|
||
|
services.tumbler.enable = true;
|
||
|
}
|