refactor Nextcloud

This commit is contained in:
Daniel Langbein 2023-08-31 13:23:25 +02:00
parent ab4e3f5cd0
commit 2cb56b413c
2 changed files with 16 additions and 1 deletions

View File

@ -12,6 +12,7 @@
./print-and-scan.nix ./print-and-scan.nix
./nitrokey-ssh-gpg.nix ./nitrokey-ssh-gpg.nix
./ssh-unlock.nix ./ssh-unlock.nix
./nextcloud-integration.nix
]; ];
# Bootloader. # Bootloader.
@ -132,7 +133,6 @@
keepassxc # Password manager keepassxc # Password manager
freetube # YouTube client freetube # YouTube client
veracrypt # Encrypted filesystem veracrypt # Encrypted filesystem
nextcloud-client # Nextcloud sync client
joplin-desktop # Markdown notes joplin-desktop # Markdown notes
rnote # Handwritten notes rnote # Handwritten notes
xournalpp # Handwritte notes xournalpp # Handwritte notes

View File

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
nextcloud-client # Nextcloud sync client
gnome.nautilus-python # Python bindings for Nautilus (Files) extension API. This ... TODO
];
};
# environment.sessionVariables.NAUTILUS_4_EXTENSION_DIR = "${config.system.path}/lib/nautilus/extensions-4";
# environment.pathsToLink = [
# "/share/nautilus-python/extensions"
# ];
}