1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(syncthing): remove music and mundoiu

This commit is contained in:
2024-04-03 15:15:35 +02:00
parent ee0feb3a06
commit 74849558fd

View File

@@ -7,14 +7,6 @@
inherit (import ../lib) tmpfilesConfig; inherit (import ../lib) tmpfilesConfig;
in { in {
systemd.tmpfiles.rules = map tmpfilesConfig [ systemd.tmpfiles.rules = map tmpfilesConfig [
{
type = "L+";
user = config.users.users.me.name;
group = "users";
mode = "0755";
argument = "${config.users.users.me.home}/cloud/nextcloud/Uni";
path = "${config.users.users.me.home}/uni";
}
]; ];
services.gnome.gnome-keyring.enable = true; services.gnome.gnome-keyring.enable = true;
@@ -101,15 +93,15 @@ in {
key = config.age.secrets.syncthing-key.path; key = config.age.secrets.syncthing-key.path;
settings = { settings = {
inherit ((import ../lib).syncthing) devices; inherit ((import ../lib).syncthing) devices;
folders = let folders = {
cloud-dir = "${config.users.users.me.home}/cloud"; "${config.users.users.me.home}/sync" = {
in { devices = ["kabsa" "manakish" "fatteh"];
"${config.users.users.me.home}/sync".devices = ["kabsa" "manakish" "fatteh"]; label = "sync";
"${config.users.users.me.home}/tmp".devices = ["kabsa" "manakish" "fatteh" "heym"]; };
"${cloud-dir}/syncthing/mundoiu".devices = ["kabsa" "manakish" "heym" "fatteh"]; "${config.users.users.me.home}/mobile" = {
"${cloud-dir}/syncthing/music" = { devices = ["kabsa" "manakish" "fatteh" "heym"];
devices = ["kabsa" "manakish" "heym" "zaatar" "fatteh"]; id = "mobile";
id = "music"; label = "mobile";
}; };
}; };
}; };