27 lines
524 B
Nix
27 lines
524 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
in {
|
|
config = mkIf config.local.profiles.desktop.enable {
|
|
programs = {
|
|
thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [
|
|
thunar-archive-plugin
|
|
thunar-volman
|
|
exo
|
|
];
|
|
};
|
|
|
|
xfconf.enable = true;
|
|
file-roller.enable = true;
|
|
};
|
|
|
|
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
|
services.tumbler.enable = true; # Thumbnail support for images
|
|
};
|
|
}
|