19 lines
305 B
Nix
19 lines
305 B
Nix
{ lib, config, pkgs, ... }:
|
|
lib.mkIf config.desktop.enable {
|
|
services.gvfs.enable = true;
|
|
|
|
services.tumbler.enable = true;
|
|
|
|
programs.file-roller.enable = true;
|
|
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
];
|
|
|
|
};
|
|
|
|
|
|
}
|