feat(desktop): enable thunar file manager and plugins

This commit is contained in:
tux
2026-05-15 10:12:07 +05:30
parent 383bc98052
commit 7f74855511

View File

@@ -0,0 +1,15 @@
{
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
services.gvfs.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-volman
];
};
};
}