Files
AsdamNixOS/modules/features/thunar.nix
2026-04-14 22:48:18 +02:00

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"
];*/
};
}