From c9a63336857740a152e773585b09b236234791b2 Mon Sep 17 00:00:00 2001 From: zack Date: Sat, 19 Oct 2024 00:28:43 -0400 Subject: [PATCH] update outputs --- flake.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/flake.nix b/flake.nix index 31d0d5c..5d66806 100644 --- a/flake.nix +++ b/flake.nix @@ -117,8 +117,8 @@ self, nixpkgs-unstable, ... - }: - inputs.snowfall-lib.mkFlake { + }: let + snowfallConfig = inputs.snowfall-lib.mkFlake { inherit inputs; src = ./.; @@ -147,13 +147,13 @@ agenix.nixosModules.default solaar.nixosModules.default ]; - - # Add this new section - outputs-builder = channels: { - hydraJobs = { - x86_64-linux.earth = self.nixosConfigurations.earth.config.system.build.toplevel; - x86_64-linux.pluto = self.nixosConfigurations.pluto.config.system.build.toplevel; - }; + }; + in + snowfallConfig + // { + hydraJobs = { + x86_64-linux.earth = self.nixosConfigurations.earth.config.system.build.toplevel; + x86_64-linux.pluto = self.nixosConfigurations.pluto.config.system.build.toplevel; }; }; }