2023-08-31 13:23:25 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-09-07 17:26:11 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
# Nextcloud sync client
|
|
|
|
nextcloud-client
|
|
|
|
# Python bindings for Nautilus (GNOME Files) extension API.
|
|
|
|
gnome.nautilus-python
|
|
|
|
];
|
2023-08-31 13:23:25 +02:00
|
|
|
|
2023-09-07 17:26:11 +02:00
|
|
|
# This is not required.
|
|
|
|
#
|
|
|
|
#environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4";
|
2023-09-07 15:35:34 +02:00
|
|
|
#environment.pathsToLink = [
|
|
|
|
# "/share/nautilus-python/extensions"
|
|
|
|
#];
|
2023-09-07 17:26:11 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
# ];
|
|
|
|
# };
|
2023-08-31 13:23:25 +02:00
|
|
|
}
|