diff --git a/modules/nextcloud-integration.nix b/modules/nextcloud-integration.nix index e8eb7ae..262614e 100644 --- a/modules/nextcloud-integration.nix +++ b/modules/nextcloud-integration.nix @@ -1,28 +1,11 @@ { config, pkgs, ... }: { + # When installed as user package, the Nextcloud integration in Nautilus does not work. + # Thus, we install the dependencies as system packages. environment.systemPackages = with pkgs; [ # Nextcloud sync client nextcloud-client # Python bindings for Nautilus (GNOME Files) extension API. gnome.nautilus-python ]; - - # This is not required. - # - #environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4"; - #environment.pathsToLink = [ - # "/share/nautilus-python/extensions" - #]; - -# This does not work! -# One has to install nautilus-python as system package! -# -# users.users.yoda = { -# packages = with pkgs; [ -# # Nextcloud sync client -# nextcloud-client -# # Python bindings for Nautilus (GNOME Files) extension API. -# gnome.nautilus-python -# ]; -# }; }