dots/configuration/modules/file-management.nix
2026-01-01 20:43:00 +01:00

22 lines
354 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
gvfs
];
programs = {
xfconf.enable = true;
thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-volman
];
};
};
services = {
devmon.enable = false;
gvfs.enable = true;
tumbler.enable = true;
};
}