created module

This commit is contained in:
Leyla Becker 2025-03-13 01:31:34 -05:00
commit 8a8fe8cfc6
11 changed files with 351 additions and 0 deletions

11
example-nixos-module.nix Normal file
View file

@ -0,0 +1,11 @@
{
lib,
self,
...
}: {
services.syncthing = {
configuration = self.outputs.syncthingConfiguration;
deviceName = "laptop";
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}