2023-08-31 13:23:25 +02:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
2023-11-06 12:24:43 +01:00
|
|
|
# When installed as user package, the Nextcloud integration in Nautilus does not work.
|
|
|
|
# Thus, we install the dependencies as system packages.
|
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.
|
2024-02-04 14:52:59 +01:00
|
|
|
# TODO: If GNOME nautilus is installed
|
2024-12-03 22:16:26 +01:00
|
|
|
nautilus-python
|
2023-09-07 17:26:11 +02:00
|
|
|
];
|
2023-08-31 13:23:25 +02:00
|
|
|
}
|