12 lines
304 B
Nix
12 lines
304 B
Nix
{
|
|
flake.nixosModules.pcmanfm = {pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
shared-mime-info # extended mimetype support
|
|
lxmenu-data # open with "Installed Applications"
|
|
pcmanfm
|
|
];
|
|
|
|
services.gvfs.enable = true; # Mount, trash, and other functionalities
|
|
};
|
|
}
|