nix-config/modules/thunar/plugins.nix
2025-11-22 16:23:37 +00:00

9 lines
152 B
Nix

{
flake.modules.pc.nixos =
{ pkgs, ... }:
{
programs.thunar.plugins = with pkgs.xfce; [
thunar-archive-plugin
];
};
}