Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

add server build to typhon

+3 -3
+3 -3
flake.nix
··· 17 17 outputs = 18 18 inputs@{ flake-parts, self, ... }: 19 19 flake-parts.lib.mkFlake { inherit inputs; } ( 20 - { withSystem, ... }: 20 + { lib, withSystem, ... }: 21 21 rec { 22 22 imports = [ ./nix/flakemodule.nix ]; 23 23 ··· 150 150 secrets = ./secrets.age; 151 151 typhonUrl = "https://typhon.junco.dev"; 152 152 }; 153 - typhonJobs = inputs.nixpkgs.lib.genAttrs systems (system: { 153 + typhonJobs = lib.recursiveUpdate (inputs.nixpkgs.lib.genAttrs systems (system: { 154 154 inherit (self.packages.${system}) client; 155 - }); 155 + })) { x86_64-linux.server = self.packages.x86_64-linux.server; }; 156 156 }; 157 157 } 158 158 );