This commit is contained in:
Daniel Langbein 2023-11-06 12:24:43 +01:00
parent 0f8f88f3b3
commit 42ed52a1b1
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -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
# ];
# };
}