tsuki: add syncthing
This commit is contained in:
parent
667d99e2e9
commit
6f3457ba2e
3 changed files with 12 additions and 1 deletions
hosts/tsuki
|
@ -18,7 +18,6 @@
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
libvirtd.enable = true;
|
libvirtd.enable = true;
|
||||||
waydroid.enable = false;
|
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
pulseaudio.enable = false;
|
pulseaudio.enable = false;
|
||||||
|
|
|
@ -5,5 +5,6 @@
|
||||||
./hydroxide.nix
|
./hydroxide.nix
|
||||||
./rnnoise.nix
|
./rnnoise.nix
|
||||||
./immich-backup.nix
|
./immich-backup.nix
|
||||||
|
./syncthing.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
11
hosts/tsuki/services/syncthing.nix
Normal file
11
hosts/tsuki/services/syncthing.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
_: {
|
||||||
|
services.syncthing = {
|
||||||
|
enable = true;
|
||||||
|
openDefaultPorts = true;
|
||||||
|
dataDir = "/home/notoh/sync";
|
||||||
|
configDir = "/home/notoh/.config/syncthing";
|
||||||
|
guiAddress = "localhost:8384";
|
||||||
|
user = "notoh";
|
||||||
|
group = "users";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue