I am batman

This commit is contained in:
2026-07-10 20:07:29 -04:00
commit 4aac54bff6
175 changed files with 18136 additions and 0 deletions

24
modules/misc/thunar.nix Normal file
View File

@@ -0,0 +1,24 @@
{ config, pkgs, ... }:
{
# Enable Thunar via Home Manager
programs.thunar = {
enable = true;
# Enable thumbnails for supported file types
enableThumbnailing = true;
# Set Thunar as the default file manager
defaultFileManager = true;
# Enable the Thunar custom actions (e.g., opening a terminal in the current directory)
customActions = [
{
}
];
# Optional: Customize the icon theme for Thunar
iconTheme = "Papirus-Dark"; # Adjust as needed based on your icon theme
};
}