mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
12 lines
362 B
Nix
12 lines
362 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.
|
|
gnome.nautilus-python
|
|
];
|
|
}
|