Sync notes from server to work PC

This commit is contained in:
Evie Litherland-Smith 2023-05-23 17:17:51 +01:00
parent 2882096fac
commit 3320e11821
2 changed files with 12 additions and 8 deletions

View file

@ -1,11 +1,5 @@
{...}: { {...}: {
imports = [ imports = [./default.nix ./devices];
./default.nix
./devices/ion.nix
./devices/monarch.nix
./devices/northstar.nix
./devices/remarkable.nix
];
services.syncthing = { services.syncthing = {
user = "xenia"; user = "xenia";
group = "users"; group = "users";
@ -48,7 +42,7 @@
}; };
"Notes" = { "Notes" = {
path = "/home/xenia/notes"; path = "/home/xenia/notes";
devices = ["ion" "monarch" "northstar"]; devices = ["ion" "monarch" "northstar" "H0615"];
enable = true; enable = true;
}; };
"Pictures" = { "Pictures" = {

View file

@ -0,0 +1,10 @@
{...}: {
imports = [
./devices/H0615.nix
./devices/ion.nix
./devices/monarch.nix
./devices/northstar.nix
./devices/remarkable.nix
./devices/vanguard.nix
];
}