Modularize nextcloud and remove need for GUI application

This commit is contained in:
DashieTM 2024-08-04 03:48:07 +02:00
parent 8d35835f89
commit ee2b51bbc1
6 changed files with 74 additions and 47 deletions

View file

@ -89,5 +89,24 @@ in
greetd = {
resolution = "3440x1440@180";
};
nextcloud = {
synclist = [
{
name = "document_sync";
remote = "Documents";
local = "/home/${config.conf.username}/Documents";
}
{
name = "picture_sync";
remote = "Pictures";
local = "/home/${config.conf.username}/Pictures";
}
{
name = "phone_sync";
remote = "Phone/Stuff";
local = "/home/${config.conf.username}/Videos/Phone/Stuff";
}
];
};
};
}