25 lines
534 B
Nix
25 lines
534 B
Nix
{ 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
|
|
};
|
|
}
|
|
|