1
1
Fork 0

Compare commits

..

3 Commits

Author SHA1 Message Date
Tim Van Baak e381001f0a beatific: add imperium host entry 2023-12-22 22:07:21 -08:00
Tim Van Baak 741a0bc340 imperium: add obsidian 2023-12-22 22:06:57 -08:00
Tim Van Baak 49d864839a imperium: syncthing system service 2023-12-19 20:06:54 -08:00
2 changed files with 15 additions and 1 deletions

View File

@ -54,7 +54,7 @@
firefox firefox
libreoffice libreoffice
mpv mpv
syncthing obsidian
unzip unzip
]; ];
@ -62,6 +62,17 @@
enable = false; enable = false;
}; };
# tvb monopolizes the system syncthing for now. User services are harder to get working
# and nobody else uses imperium right now. In the future, rewriting the syncthing module
# to allow multiple instances is probably the right move.
services.syncthing = {
enable = true;
dataDir = "/home/tvb";
openDefaultPorts = true;
user = "tvb";
group = "tvb";
};
# This value governs how some stateful data, like databases, are handled # This value governs how some stateful data, like databases, are handled
# across different versions of NixOS. This should not be changed to a new # across different versions of NixOS. This should not be changed to a new
# release unless the sysadmin has determined that no services would be # release unless the sysadmin has determined that no services would be

View File

@ -191,6 +191,9 @@ in {
"backyard.home" "backyard.home"
"jellyfin.backyard.home" "jellyfin.backyard.home"
]; ];
"10.22.20.9" = [
"imperium.home"
];
}; };
}) })
]; ];