shaw: init, install syncthing

This commit is contained in:
Katherina Walshe-Grey 2024-08-05 04:12:16 +01:00
parent 50b47981c8
commit 2b9b157679

11
hosts/shaw/home.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
services.syncthing = {
enable = true;
extraOptions = [
"--gui-address=:8385"
"--home=/home/qenya/state/syncthing"
];
};
}