syncthing: add extra shares
This commit is contained in:
parent
2b9b157679
commit
a2dc4024e0
|
@ -6,14 +6,15 @@ The canonical location for this repository is https://git.qenya.tel/qenya/nixfil
|
||||||
|
|
||||||
## Machines
|
## Machines
|
||||||
|
|
||||||
### In this config
|
### Managed
|
||||||
* `tohru`: Dell Latitude 5300, personal laptop
|
* `tohru`: Dell Latitude 5300, personal laptop
|
||||||
* `yevaud`: Oracle Cloud free AMD VM, hosts a Forgejo instance
|
* `yevaud`: Oracle Cloud free AMD VM, hosts a Forgejo instance and WireGuard server for the other machines in the network
|
||||||
* `orm`: Oracle Cloud free AMD VM, WireGuard server for the other machines in the network
|
* `orm`: Oracle Cloud free AMD VM, currently idling
|
||||||
|
|
||||||
### Referenced only
|
### Referenced only
|
||||||
* `kilgharrah`: Custom-built personal desktop, currently running Arch
|
* `kilgharrah`: Custom-built personal desktop, currently running Arch
|
||||||
* `shaw`: [My girlfriend's NAS](https://github.com/randomnetcat/nix-configs/tree/main/hosts/shaw)
|
* `shaw`: [My girlfriend's NAS](https://github.com/randomnetcat/nix-configs/tree/main/hosts/shaw)
|
||||||
|
* `latias`: My Steam Deck
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
|
@ -11,12 +11,41 @@
|
||||||
settings = {
|
settings = {
|
||||||
devices = {
|
devices = {
|
||||||
"kilgharrah" = { id = "RDT7IGD-76FZ6LY-37PPB2W-DWPQRPR-LZ4AXF7-4GIIHYJ-RVXUUSG-ZXPN3AZ"; };
|
"kilgharrah" = { id = "RDT7IGD-76FZ6LY-37PPB2W-DWPQRPR-LZ4AXF7-4GIIHYJ-RVXUUSG-ZXPN3AZ"; };
|
||||||
|
"latias" = { id = "EN4W2SB-LB4AAZQ-6AQIE7G-S3BSCSP-V2EUNMM-KAQEHW3-PPAPGBO-PXRPWAL"; };
|
||||||
|
"shaw" = { id = "NC7WMZS-GQETJYR-IAYGD65-GHTSTVP-VAAG43K-W7N3LO5-C5OQMZ2-DTK6YA7"; };
|
||||||
};
|
};
|
||||||
folders = {
|
folders = {
|
||||||
|
"Sync" = {
|
||||||
|
id = "uln2v-zwzwj";
|
||||||
|
path = "~/Sync";
|
||||||
|
devices = [ "kilgharrah" "shaw" ];
|
||||||
|
};
|
||||||
|
|
||||||
"Documents" = {
|
"Documents" = {
|
||||||
id = "alp59-7gs9s";
|
id = "alp59-7gs9s";
|
||||||
path = "~/Documents";
|
path = "~/Documents";
|
||||||
devices = [ "kilgharrah" ];
|
devices = [ "kilgharrah" "shaw" ];
|
||||||
|
};
|
||||||
|
"Music" = {
|
||||||
|
id = "7xvkf-y62s7";
|
||||||
|
path = "~/Music";
|
||||||
|
devices = [ "kilgharrah" "shaw" ];
|
||||||
|
};
|
||||||
|
"Pictures" = {
|
||||||
|
id = "tbmhx-ep7wk";
|
||||||
|
path = "~/Pictures";
|
||||||
|
devices = [ "kilgharrah" "shaw" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
"ES-DE" = {
|
||||||
|
id = "c1cbh-llw94";
|
||||||
|
path = "~/ES-DE";
|
||||||
|
devices = [ "kilgharrah" "latias" "shaw" ];
|
||||||
|
};
|
||||||
|
"ROMs" = {
|
||||||
|
id = "dcze4-v6act";
|
||||||
|
path = "~/ROMs";
|
||||||
|
devices = [ "kilgharrah" "latias" "shaw" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue