system-manager-wakasu
1# Wrapper module to import nixpkgs syncthing module for system-manager
2# This avoids circular dependency by using inputs.nixpkgs instead of pkgs.path
3{ inputs, ... }:
4{
5 imports = [
6 "${inputs.nixpkgs}/nixos/modules/services/networking/syncthing.nix"
7 ];
8}