Files
nix-config/modules/nixos/desktop/thunar.nix
2026-09-11 01:59:55 +05:30

17 lines
278 B
Nix

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