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