An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(MM-135): expose nixosModules.default in flake.nix

authored by

Malpercio and committed by
Tangled
051143e9 0385ffa4

+8
+8
flake.nix
··· 63 63 }; 64 64 } 65 65 ); 66 + 67 + # nixosModules is not per-system — placed outside forEachSystem. 68 + # self is captured from the outputs function closure. 69 + nixosModules.default = { lib, pkgs, ... }: { 70 + imports = [ ./nix/module.nix ]; 71 + config.services.ezpds.package = 72 + lib.mkDefault self.packages.${pkgs.system}.relay; 73 + }; 66 74 }; 67 75 }