organized into folders
This commit is contained in:
parent
8a8fe8cfc6
commit
84c5dd7422
7 changed files with 5 additions and 9 deletions
47
example/configuration.nix
Normal file
47
example/configuration.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{config, ...}: {
|
||||
folders = {
|
||||
documents = {
|
||||
id = "aaaaa-aaaaa";
|
||||
};
|
||||
photos = {
|
||||
id = "bbbbb-bbbbb";
|
||||
};
|
||||
};
|
||||
devices = {
|
||||
desktop = {
|
||||
id = "AAAAAAA-AAAAAAA-AAAAAAA-AAAAAAA-AAAAAAA-AAAAAAA-AAAAAAA-AAAAAAA";
|
||||
folders = {
|
||||
documents = {
|
||||
folder = config.folders.documents;
|
||||
path = "/sync/user/documents";
|
||||
};
|
||||
photos = {
|
||||
folder = config.folders.photos;
|
||||
path = "/sync/user/photos";
|
||||
};
|
||||
};
|
||||
};
|
||||
laptop = {
|
||||
id = "BBBBBBB-BBBBBBB-BBBBBBB-BBBBBBB-BBBBBBB-BBBBBBB-BBBBBBB-BBBBBBB";
|
||||
folders = {
|
||||
documents = {
|
||||
folder = config.folders.documents;
|
||||
path = "/sync/documents";
|
||||
};
|
||||
photos = {
|
||||
folder = config.folders.photos;
|
||||
path = "/sync/photos";
|
||||
};
|
||||
};
|
||||
};
|
||||
phone = {
|
||||
id = "CCCCCCC-CCCCCCC-CCCCCCC-CCCCCCC-CCCCCCC-CCCCCCC-CCCCCCC-CCCCCCC";
|
||||
folders = {
|
||||
photos = {
|
||||
folder = config.folders.photos;
|
||||
path = "/sync/photos";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue