12 lines
199 B
Nix
12 lines
199 B
Nix
{
|
|
lib,
|
|
self,
|
|
...
|
|
}: {
|
|
services.syncthing = {
|
|
configuration = self.outputs.syncthingConfiguration;
|
|
deviceName = "laptop";
|
|
};
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|