Files
NixConfig/hosts/darkgui-vps/Alfa/conf/GM/DE/niri/thunar.nix
T
2026-04-19 15:17:37 -03:00

28 lines
311 B
Nix

{
config,
lib,
inputs,
pkgs,
...
}:
{
programs.xfconf.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-vcs-plugin
thunar-volman
];
};
services = {
gvfs.enable = true;
tumbler.enable = true;
};
}