16 lines
323 B
Nix
16 lines
323 B
Nix
{
|
|
flake.nixosModules.thunar = {pkgs, ...}: {
|
|
programs.thunar.enable = true;
|
|
services.gvfs.enable = true;
|
|
services.tumbler.enable = true;
|
|
xdg.mime.defaultApplications = {
|
|
"inode/directory" = "thunar.desktop";
|
|
};
|
|
|
|
/* persistance.cache.directories = [
|
|
".config/vesktop"
|
|
];*/
|
|
|
|
};
|
|
}
|