nix-git/modules/nextcloud-integration.nix

12 lines
362 B
Nix
Raw Normal View History

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.
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
}