nix-config/modules/mixins/thunar.nix

14 lines
195 B
Nix
Raw Normal View History

2025-04-05 09:00:00 +01:00
{ pkgs, ... }:
{
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
];
};
environment.systemPackages = with pkgs; [ xfce.tumbler ];
}