My Nix Configuration
2
fork

Configure Feed

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

at 7b1e53e5525db3d6d638cdb3e948ffe3ebe9d5b4 13 lines 205 B view raw
1{ 2 self, 3 lib, 4 ... 5}: 6let 7 clientList = lib.concatLists ( 8 lib.mapAttrsToList (c: _: (c.config.dish.oidcClients or [ ])) self.nixosConfigurations 9 ); 10in 11{ 12 flake.data.oidcClients = clientList; 13}