mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
working Nextcloud integration in Nautilus (Files)
This commit is contained in:
parent
e03ca7af60
commit
2002a7bb15
@ -1,20 +1,29 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.yoda = {
|
||||
packages = with pkgs; [
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Nextcloud sync client
|
||||
nextcloud-client
|
||||
# Python bindings for Nautilus (GNOME Files) extension API.
|
||||
gnome.nautilus-python
|
||||
];
|
||||
};
|
||||
|
||||
# environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4";
|
||||
|
||||
# List of directories to be symlinked in /run/current-system/sw.
|
||||
# -> There will be a symlink at /run/current-system/sw/share/nautilus-python/extensions
|
||||
# This is not required.
|
||||
#
|
||||
#environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4";
|
||||
#environment.pathsToLink = [
|
||||
# "/share/nautilus-python/extensions"
|
||||
#];
|
||||
|
||||
# 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
|
||||
# ];
|
||||
# };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user