dolphin basic

This commit is contained in:
2024-03-03 19:04:59 +01:00
parent fd31d1d355
commit 0ada1ba247
4 changed files with 16 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, ... }:
{
programs = {
thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
};
xfconf.enable = true;
};
services = {
gvfs.enable = true; # Mount, trash, ...
tumbler.enable = true; # Thumbnail support for images.
};
}