nix-git/modules/nextcloud-integration.nix
2024-02-04 14:53:16 +01:00

13 lines
405 B
Nix

{ 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.
# TODO: If GNOME nautilus is installed
gnome.nautilus-python
];
}