Files
garandos/modules/core/thunar.nix

16 lines
181 B
Nix

{
pkgs,
...
}:
{
programs = {
thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
};
}