22 lines
389 B
Nix
22 lines
389 B
Nix
|
{
|
||
|
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
|
||
|
};
|
||
|
}
|