flocon/modules/programs/pcmanfm.nix

22 lines
389 B
Nix
Raw Normal View History

2025-02-11 18:03:13 +01:00
{
lib,
pkgs,
config,
...
}: let
inherit (lib) mkIf;
inherit (config.local.systemVars) username;
in {
config = mkIf config.local.profiles.desktop.enable {
hjem.users.${username} = {
packages = with pkgs; [
lxmenu-data
pcmanfm
shared-mime-info
];
};
services.gvfs.enable = true; # Mount, trash, and other functionalities
};
}