removed horizon and twilight from notes and calendar share
This commit is contained in:
parent
d04c5183ca
commit
a7888cb164
|
@ -86,6 +86,14 @@ in {
|
||||||
defiant = lib.mkIf (config.networking.hostName != "defiant") "defiant";
|
defiant = lib.mkIf (config.networking.hostName != "defiant") "defiant";
|
||||||
twilight = lib.mkIf (config.networking.hostName != "twilight") "twilight";
|
twilight = lib.mkIf (config.networking.hostName != "twilight") "twilight";
|
||||||
horizon = lib.mkIf (config.networking.hostName != "horizon") "horizon";
|
horizon = lib.mkIf (config.networking.hostName != "horizon") "horizon";
|
||||||
|
allDevices = [
|
||||||
|
defiant
|
||||||
|
ceder
|
||||||
|
coven
|
||||||
|
twilight
|
||||||
|
horizon
|
||||||
|
shale
|
||||||
|
];
|
||||||
leylaDevices = [
|
leylaDevices = [
|
||||||
defiant
|
defiant
|
||||||
ceder
|
ceder
|
||||||
|
@ -112,25 +120,21 @@ in {
|
||||||
"calendar" = {
|
"calendar" = {
|
||||||
id = "8oatl-1rv6w";
|
id = "8oatl-1rv6w";
|
||||||
path = "${mountDir}/leyla/calendar";
|
path = "${mountDir}/leyla/calendar";
|
||||||
devices = leylaDevices;
|
devices = superNoteTablets;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
(lib.mkIf config.host.sync.folders.leyla.notes.enable {
|
(lib.mkIf config.host.sync.folders.leyla.notes.enable {
|
||||||
"notes" = {
|
"notes" = {
|
||||||
id = "dwbuv-zffnf";
|
id = "dwbuv-zffnf";
|
||||||
path = "${mountDir}/leyla/notes";
|
path = "${mountDir}/leyla/notes";
|
||||||
devices = leylaDevices;
|
devices = superNoteTablets;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
(lib.mkIf config.host.sync.folders.share.enable {
|
(lib.mkIf config.host.sync.folders.share.enable {
|
||||||
"share" = {
|
"share" = {
|
||||||
id = "73ot0-cxmkx";
|
id = "73ot0-cxmkx";
|
||||||
path = "${mountDir}/default/share";
|
path = "${mountDir}/default/share";
|
||||||
devices = [
|
devices = allDevices;
|
||||||
ceder
|
|
||||||
shale
|
|
||||||
defiant
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue