I am batman
This commit is contained in:
24
modules/misc/thunar.nix
Normal file
24
modules/misc/thunar.nix
Normal 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
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user