nix-config/modules2/thunar/plugins.nix
Oliver Davies 603a310d68
All checks were successful
/ check (push) Successful in 1m33s
Move thunar configuration
2025-07-25 10:43:30 +01:00

9 lines
152 B
Nix

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