mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
8 lines
189 B
Nix
8 lines
189 B
Nix
{pkgs, ...}:
|
|
{
|
|
services.gvfs.enable = true;
|
|
programs.thunar = {
|
|
enable = true;
|
|
plugins = with pkgs.xfce; [ thunar-volman thunar-archive-plugin thunar-media-tags-plugin];
|
|
};
|
|
}
|